| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 scoped_ptr<devtools::security::SecurityHandler> security_handler_; | 135 scoped_ptr<devtools::security::SecurityHandler> security_handler_; |
| 136 scoped_ptr<devtools::service_worker::ServiceWorkerHandler> | 136 scoped_ptr<devtools::service_worker::ServiceWorkerHandler> |
| 137 service_worker_handler_; | 137 service_worker_handler_; |
| 138 scoped_ptr<devtools::tracing::TracingHandler> tracing_handler_; | 138 scoped_ptr<devtools::tracing::TracingHandler> tracing_handler_; |
| 139 scoped_ptr<devtools::emulation::EmulationHandler> emulation_handler_; | 139 scoped_ptr<devtools::emulation::EmulationHandler> emulation_handler_; |
| 140 scoped_ptr<DevToolsFrameTraceRecorder> frame_trace_recorder_; | 140 scoped_ptr<DevToolsFrameTraceRecorder> frame_trace_recorder_; |
| 141 #if defined(OS_ANDROID) | 141 #if defined(OS_ANDROID) |
| 142 scoped_ptr<PowerSaveBlockerImpl> power_save_blocker_; | 142 scoped_ptr<PowerSaveBlockerImpl> power_save_blocker_; |
| 143 #endif | 143 #endif |
| 144 scoped_ptr<DevToolsProtocolHandler> protocol_handler_; | 144 scoped_ptr<DevToolsProtocolHandler> protocol_handler_; |
| 145 bool current_frame_crashed_; |
| 145 | 146 |
| 146 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); | 147 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); |
| 147 }; | 148 }; |
| 148 | 149 |
| 149 } // namespace content | 150 } // namespace content |
| 150 | 151 |
| 151 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ | 152 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ |
| OLD | NEW |