| 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 CHROMECAST_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ | 5 #ifndef CHROMECAST_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ |
| 6 #define CHROMECAST_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ | 6 #define CHROMECAST_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "components/prefs/pref_member.h" | 12 #include "base/prefs/pref_member.h" |
| 13 | 13 |
| 14 namespace devtools_http_handler { | 14 namespace devtools_http_handler { |
| 15 class DevToolsHttpHandler; | 15 class DevToolsHttpHandler; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace chromecast { | 18 namespace chromecast { |
| 19 namespace shell { | 19 namespace shell { |
| 20 | 20 |
| 21 class CastDevToolsManagerDelegate; | 21 class CastDevToolsManagerDelegate; |
| 22 | 22 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 BooleanPrefMember pref_enabled_; | 34 BooleanPrefMember pref_enabled_; |
| 35 uint16_t port_; | 35 uint16_t port_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(RemoteDebuggingServer); | 37 DISALLOW_COPY_AND_ASSIGN(RemoteDebuggingServer); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace shell | 40 } // namespace shell |
| 41 } // namespace chromecast | 41 } // namespace chromecast |
| 42 | 42 |
| 43 #endif // CHROMECAST_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ | 43 #endif // CHROMECAST_BROWSER_DEVTOOLS_REMOTE_DEBUGGING_SERVER_H_ |
| OLD | NEW |