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

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

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_manager.h ('k') | webkit/glue/dom_operations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/devtools/debugger_agent_manager.cc
===================================================================
--- webkit/glue/devtools/debugger_agent_manager.cc (revision 30557)
+++ webkit/glue/devtools/debugger_agent_manager.cc (working copy)
@@ -11,16 +11,19 @@
#undef LOG
#include "webkit/api/public/WebDevToolsAgent.h"
+#include "webkit/api/src/WebFrameImpl.h"
+#include "webkit/api/src/WebViewImpl.h"
#include "webkit/glue/devtools/debugger_agent_impl.h"
#include "webkit/glue/devtools/debugger_agent_manager.h"
#include "webkit/glue/webdevtoolsagent_impl.h"
-#include "webkit/glue/webview_impl.h"
#if USE(V8)
#include "v8/include/v8-debug.h"
#endif
using WebKit::WebDevToolsAgent;
+using WebKit::WebFrameImpl;
+using WebKit::WebViewImpl;
WebDevToolsAgent::MessageLoopDispatchHandler
DebuggerAgentManager::message_loop_dispatch_handler_ = NULL;
@@ -77,7 +80,7 @@
agent->web_view(),
new WebCore::PageGroupLoadDeferrer(agent->GetPage(), true));
views.append(agent->web_view());
- agent->web_view()->SetIgnoreInputEvents(true);
+ agent->web_view()->setIgnoreInputEvents(true);
}
// 2. Process messages.
@@ -89,7 +92,7 @@
++it) {
if (page_deferrers_.contains(*it)) {
// The view was not closed during the dispatch.
- (*it)->SetIgnoreInputEvents(false);
+ (*it)->setIgnoreInputEvents(false);
}
}
deleteAllValues(page_deferrers_);
« no previous file with comments | « webkit/glue/devtools/debugger_agent_manager.h ('k') | webkit/glue/dom_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698