OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" |
9 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" | 10 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" |
10 | 11 |
11 namespace net { | 12 namespace net { |
12 class ServerSocket; | 13 class ServerSocket; |
13 } | 14 } |
14 | 15 |
15 namespace content { | 16 namespace content { |
16 namespace devtools { | 17 namespace devtools { |
17 namespace tethering { | 18 namespace tethering { |
18 | 19 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 static TetheringImpl* impl_; | 53 static TetheringImpl* impl_; |
53 | 54 |
54 DISALLOW_COPY_AND_ASSIGN(TetheringHandler); | 55 DISALLOW_COPY_AND_ASSIGN(TetheringHandler); |
55 }; | 56 }; |
56 | 57 |
57 } // namespace tethering | 58 } // namespace tethering |
58 } // namespace devtools | 59 } // namespace devtools |
59 } // namespace content | 60 } // namespace content |
60 | 61 |
61 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ | 62 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ |
OLD | NEW |