Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: content/browser/devtools/render_frame_devtools_agent_host.h

Issue 1181673002: [DevTools] Preserve DevTools for crashed page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comment Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698