| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/single_thread_task_runner.h" |
| 13 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" | 15 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" |
| 14 | 16 |
| 15 namespace net { | 17 namespace net { |
| 16 class ServerSocket; | 18 class ServerSocket; |
| 17 } | 19 } |
| 18 | 20 |
| 19 namespace content { | 21 namespace content { |
| 20 namespace devtools { | 22 namespace devtools { |
| 21 namespace tethering { | 23 namespace tethering { |
| 22 | 24 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 static TetheringImpl* impl_; | 58 static TetheringImpl* impl_; |
| 57 | 59 |
| 58 DISALLOW_COPY_AND_ASSIGN(TetheringHandler); | 60 DISALLOW_COPY_AND_ASSIGN(TetheringHandler); |
| 59 }; | 61 }; |
| 60 | 62 |
| 61 } // namespace tethering | 63 } // namespace tethering |
| 62 } // namespace devtools | 64 } // namespace devtools |
| 63 } // namespace content | 65 } // namespace content |
| 64 | 66 |
| 65 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ | 67 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_TETHERING_HANDLER_H_ |
| OLD | NEW |