| OLD | NEW |
| 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 CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ |
| 6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 scoped_ptr<devtools::power::PowerHandler> power_handler_; | 133 scoped_ptr<devtools::power::PowerHandler> power_handler_; |
| 134 scoped_ptr<devtools::service_worker::ServiceWorkerHandler> | 134 scoped_ptr<devtools::service_worker::ServiceWorkerHandler> |
| 135 service_worker_handler_; | 135 service_worker_handler_; |
| 136 scoped_ptr<devtools::tracing::TracingHandler> tracing_handler_; | 136 scoped_ptr<devtools::tracing::TracingHandler> tracing_handler_; |
| 137 scoped_ptr<devtools::emulation::EmulationHandler> emulation_handler_; | 137 scoped_ptr<devtools::emulation::EmulationHandler> emulation_handler_; |
| 138 scoped_ptr<DevToolsFrameTraceRecorder> frame_trace_recorder_; | 138 scoped_ptr<DevToolsFrameTraceRecorder> frame_trace_recorder_; |
| 139 #if defined(OS_ANDROID) | 139 #if defined(OS_ANDROID) |
| 140 scoped_ptr<PowerSaveBlockerImpl> power_save_blocker_; | 140 scoped_ptr<PowerSaveBlockerImpl> power_save_blocker_; |
| 141 #endif | 141 #endif |
| 142 scoped_ptr<DevToolsProtocolHandler> protocol_handler_; | 142 scoped_ptr<DevToolsProtocolHandler> protocol_handler_; |
| 143 bool frame_crashed_; |
| 143 | 144 |
| 144 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); | 145 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 } // namespace content | 148 } // namespace content |
| 148 | 149 |
| 149 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ | 150 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ |
| OLD | NEW |