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

Side by Side Diff: tools/android/forwarder2/host_controller.h

Issue 1549203002: Switch to standard integer types in tools/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
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 #ifndef TOOLS_ANDROID_FORWARDER2_HOST_CONTROLLER_H_ 5 #ifndef TOOLS_ANDROID_FORWARDER2_HOST_CONTROLLER_H_
6 #define TOOLS_ANDROID_FORWARDER2_HOST_CONTROLLER_H_ 6 #define TOOLS_ANDROID_FORWARDER2_HOST_CONTROLLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h"
11 #include "base/callback.h" 10 #include "base/callback.h"
12 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/threading/thread.h" 15 #include "base/threading/thread.h"
16 #include "tools/android/forwarder2/forwarders_manager.h" 16 #include "tools/android/forwarder2/forwarders_manager.h"
17 #include "tools/android/forwarder2/pipe_notifier.h" 17 #include "tools/android/forwarder2/pipe_notifier.h"
18 #include "tools/android/forwarder2/self_deleter_helper.h" 18 #include "tools/android/forwarder2/self_deleter_helper.h"
19 #include "tools/android/forwarder2/socket.h" 19 #include "tools/android/forwarder2/socket.h"
20 20
21 namespace forwarder2 { 21 namespace forwarder2 {
22 22
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 const scoped_refptr<base::SingleThreadTaskRunner> deletion_task_runner_; 87 const scoped_refptr<base::SingleThreadTaskRunner> deletion_task_runner_;
88 base::Thread thread_; 88 base::Thread thread_;
89 ForwardersManager forwarders_manager_; 89 ForwardersManager forwarders_manager_;
90 90
91 DISALLOW_COPY_AND_ASSIGN(HostController); 91 DISALLOW_COPY_AND_ASSIGN(HostController);
92 }; 92 };
93 93
94 } // namespace forwarder2 94 } // namespace forwarder2
95 95
96 #endif // TOOLS_ANDROID_FORWARDER2_HOST_CONTROLLER_H_ 96 #endif // TOOLS_ANDROID_FORWARDER2_HOST_CONTROLLER_H_
OLDNEW
« no previous file with comments | « tools/android/forwarder2/forwarders_manager.cc ('k') | tools/android/forwarder2/host_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698