Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: remoting/host/setup/daemon_controller_linux.cc

Issue 12473004: src/: Update the remaining include paths of string_split.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/host/setup/daemon_controller.h" 5 #include "remoting/host/setup/daemon_controller.h"
6 6
7 #include <unistd.h> 7 #include <unistd.h>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/environment.h" 13 #include "base/environment.h"
14 #include "base/file_util.h" 14 #include "base/file_util.h"
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/json/json_writer.h" 16 #include "base/json/json_writer.h"
17 #include "base/logging.h" 17 #include "base/logging.h"
18 #include "base/md5.h" 18 #include "base/md5.h"
19 #include "base/process_util.h" 19 #include "base/process_util.h"
20 #include "base/string_number_conversions.h" 20 #include "base/string_number_conversions.h"
21 #include "base/string_split.h"
22 #include "base/string_util.h" 21 #include "base/string_util.h"
22 #include "base/strings/string_split.h"
23 #include "base/threading/thread.h" 23 #include "base/threading/thread.h"
24 #include "base/values.h" 24 #include "base/values.h"
25 #include "net/base/net_util.h" 25 #include "net/base/net_util.h"
26 #include "remoting/host/host_config.h" 26 #include "remoting/host/host_config.h"
27 #include "remoting/host/json_host_config.h" 27 #include "remoting/host/json_host_config.h"
28 #include "remoting/host/usage_stats_consent.h" 28 #include "remoting/host/usage_stats_consent.h"
29 29
30 namespace remoting { 30 namespace remoting {
31 31
32 namespace { 32 namespace {
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 done_callback.Run(version); 345 done_callback.Run(version);
346 } 346 }
347 347
348 } // namespace 348 } // namespace
349 349
350 scoped_ptr<DaemonController> remoting::DaemonController::Create() { 350 scoped_ptr<DaemonController> remoting::DaemonController::Create() {
351 return scoped_ptr<DaemonController>(new DaemonControllerLinux()); 351 return scoped_ptr<DaemonController>(new DaemonControllerLinux());
352 } 352 }
353 353
354 } // namespace remoting 354 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/client/plugin/chromoting_instance.cc ('k') | remoting/protocol/negotiating_authenticator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698