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

Side by Side Diff: tools/android/forwarder2/host_forwarder_main.cc

Issue 14272007: Update the remaining include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 <errno.h> 5 #include <errno.h>
6 #include <signal.h> 6 #include <signal.h>
7 #include <unistd.h> 7 #include <unistd.h>
8 8
9 #include <cstdio> 9 #include <cstdio>
10 #include <cstring> 10 #include <cstring>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/file_util.h" 16 #include "base/file_util.h"
17 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/memory/scoped_vector.h" 19 #include "base/memory/scoped_vector.h"
20 #include "base/posix/eintr_wrapper.h" 20 #include "base/posix/eintr_wrapper.h"
21 #include "base/safe_strerror_posix.h" 21 #include "base/safe_strerror_posix.h"
22 #include "base/string_number_conversions.h" 22 #include "base/string_number_conversions.h"
23 #include "base/string_piece.h"
24 #include "base/string_util.h" 23 #include "base/string_util.h"
25 #include "base/stringprintf.h" 24 #include "base/stringprintf.h"
25 #include "base/strings/string_piece.h"
26 #include "base/strings/string_split.h" 26 #include "base/strings/string_split.h"
27 #include "tools/android/forwarder2/common.h" 27 #include "tools/android/forwarder2/common.h"
28 #include "tools/android/forwarder2/daemon.h" 28 #include "tools/android/forwarder2/daemon.h"
29 #include "tools/android/forwarder2/host_controller.h" 29 #include "tools/android/forwarder2/host_controller.h"
30 #include "tools/android/forwarder2/pipe_notifier.h" 30 #include "tools/android/forwarder2/pipe_notifier.h"
31 #include "tools/android/forwarder2/socket.h" 31 #include "tools/android/forwarder2/socket.h"
32 32
33 namespace forwarder2 { 33 namespace forwarder2 {
34 namespace { 34 namespace {
35 35
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 255
256 return client_delegate.has_failed() || daemon_delegate.has_failed(); 256 return client_delegate.has_failed() || daemon_delegate.has_failed();
257 } 257 }
258 258
259 } // namespace 259 } // namespace
260 } // namespace forwarder2 260 } // namespace forwarder2
261 261
262 int main(int argc, char** argv) { 262 int main(int argc, char** argv) {
263 return forwarder2::RunHostForwarder(argc, argv); 263 return forwarder2::RunHostForwarder(argc, argv);
264 } 264 }
OLDNEW
« no previous file with comments | « tools/android/forwarder2/device_forwarder_main.cc ('k') | tools/json_schema_compiler/cpp_bundle_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698