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" | |
10 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" | 9 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" |
11 | 10 |
12 namespace net { | 11 namespace net { |
13 class ServerSocket; | 12 class ServerSocket; |
14 } | 13 } |
15 | 14 |
16 namespace content { | 15 namespace content { |
17 namespace devtools { | 16 namespace devtools { |
18 namespace tethering { | 17 namespace tethering { |
19 | 18 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 static TetheringImpl* impl_; | 52 static TetheringImpl* impl_; |
54 | 53 |
55 DISALLOW_COPY_AND_ASSIGN(TetheringHandler); | 54 DISALLOW_COPY_AND_ASSIGN(TetheringHandler); |
56 }; | 55 }; |
57 | 56 |
58 } // namespace tethering | 57 } // namespace tethering |
59 } // namespace devtools | 58 } // namespace devtools |
60 } // namespace content | 59 } // namespace content |
61 | 60 |
62 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ | 61 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ |
OLD | NEW |