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

Unified Diff: webkit/glue/devtools/debugger_agent_manager.h

Issue 341030: Moves webview_impl.cc, webframe_impl.cc and webframeloaderclient_impl.cc into... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/devtools/debugger_agent_impl.cc ('k') | webkit/glue/devtools/debugger_agent_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/debugger_agent_manager.h
===================================================================
--- webkit/glue/devtools/debugger_agent_manager.h (revision 30557)
+++ webkit/glue/devtools/debugger_agent_manager.h (working copy)
@@ -15,11 +15,14 @@
class PageGroupLoadDeferrer;
}
-class DebuggerAgentImpl;
-class DictionaryValue;
+namespace WebKit {
class WebFrameImpl;
class WebViewImpl;
+}
+class DebuggerAgentImpl;
+class DictionaryValue;
+
// There is single v8 instance per render process. Also there may be several
// RenderViews and consequently devtools agents in the process that want to talk
// to the v8 debugger. This class coordinates communication between the debug
@@ -46,9 +49,9 @@
// Sets |host_id| as the frame context data. This id is used to filter scripts
// related to the inspected page.
- static void SetHostId(WebFrameImpl* webframe, int host_id);
+ static void SetHostId(WebKit::WebFrameImpl* webframe, int host_id);
- static void OnWebViewClosed(WebViewImpl* webview);
+ static void OnWebViewClosed(WebKit::WebViewImpl* webview);
static void OnNavigate();
@@ -86,7 +89,7 @@
static WebKit::WebDevToolsAgent::MessageLoopDispatchHandler
message_loop_dispatch_handler_;
static bool in_host_dispatch_handler_;
- typedef HashMap<WebViewImpl*, WebCore::PageGroupLoadDeferrer*>
+ typedef HashMap<WebKit::WebViewImpl*, WebCore::PageGroupLoadDeferrer*>
DeferrersMap;
static DeferrersMap page_deferrers_;
« no previous file with comments | « webkit/glue/devtools/debugger_agent_impl.cc ('k') | webkit/glue/devtools/debugger_agent_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698