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

Unified Diff: public/web/WebDevToolsFrontend.h

Issue 900543003: DevTools: do not abuse inspector controller for the front-end side plumbing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed initializer. Created 5 years, 11 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 | « Source/web/WebViewImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDevToolsFrontend.h
diff --git a/public/web/WebDevToolsFrontend.h b/public/web/WebDevToolsFrontend.h
index 905143e47cada50650a4023dd34d73eee2cdab74..d457c63b6263af647fb582f37335cb4e9aec7e1e 100644
--- a/public/web/WebDevToolsFrontend.h
+++ b/public/web/WebDevToolsFrontend.h
@@ -36,6 +36,7 @@
namespace blink {
class WebDevToolsFrontendClient;
+class WebLocalFrame;
class WebString;
class WebView;
@@ -43,11 +44,17 @@ class WebView;
// direct and delegate Apis to the host.
class WebDevToolsFrontend {
public:
+ // FIXME: remove once migrated to the WebLocalFrame.
BLINK_EXPORT static WebDevToolsFrontend* create(
WebView*,
WebDevToolsFrontendClient*,
const WebString& applicationLocale);
+ BLINK_EXPORT static WebDevToolsFrontend* create(
+ WebLocalFrame*,
+ WebDevToolsFrontendClient*,
+ const WebString& applicationLocale);
+
virtual ~WebDevToolsFrontend() {}
};
« no previous file with comments | « Source/web/WebViewImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698