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

Unified Diff: webkit/glue/devtools/debugger_agent_impl.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/api/src/WebWorkerImpl.cpp ('k') | webkit/glue/devtools/debugger_agent_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/debugger_agent_impl.h
===================================================================
--- webkit/glue/devtools/debugger_agent_impl.h (revision 30557)
+++ webkit/glue/devtools/debugger_agent_impl.h (working copy)
@@ -12,7 +12,6 @@
#include "webkit/glue/devtools/debugger_agent.h"
class WebDevToolsAgentImpl;
-class WebViewImpl;
namespace WebCore {
class Document;
@@ -21,13 +20,17 @@
class String;
}
+namespace WebKit {
+class WebViewImpl;
+}
+
class DebuggerAgentImpl : public DebuggerAgent {
public:
// Creates utility context with injected js agent.
static void CreateUtilityContext(WebCore::Frame* frame,
v8::Persistent<v8::Context>* context);
- DebuggerAgentImpl(WebViewImpl* web_view_impl,
+ DebuggerAgentImpl(WebKit::WebViewImpl* web_view_impl,
DebuggerAgentDelegate* delegate,
WebDevToolsAgentImpl* webdevtools_agent);
virtual ~DebuggerAgentImpl();
@@ -66,10 +69,10 @@
WebCore::Page* GetPage();
WebDevToolsAgentImpl* webdevtools_agent() { return webdevtools_agent_; };
- WebViewImpl* web_view() { return web_view_impl_; }
+ WebKit::WebViewImpl* web_view() { return web_view_impl_; }
private:
- WebViewImpl* web_view_impl_;
+ WebKit::WebViewImpl* web_view_impl_;
DebuggerAgentDelegate* delegate_;
WebDevToolsAgentImpl* webdevtools_agent_;
int profiler_log_position_;
« no previous file with comments | « webkit/api/src/WebWorkerImpl.cpp ('k') | webkit/glue/devtools/debugger_agent_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698