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

Unified Diff: android_webview/browser/aw_browser_main_parts.h

Issue 12378011: [Android WebView] Add simple support for remote web debugging (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased and fixed comment Created 7 years, 10 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 | « android_webview/android_webview.gyp ('k') | android_webview/browser/aw_browser_main_parts.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_browser_main_parts.h
diff --git a/android_webview/browser/aw_browser_main_parts.h b/android_webview/browser/aw_browser_main_parts.h
index ef308e2cce3833ac7669e56d9f80b87582a767dd..669833b27ba4a545e82a8edfa46addf85f729fcb 100644
--- a/android_webview/browser/aw_browser_main_parts.h
+++ b/android_webview/browser/aw_browser_main_parts.h
@@ -17,6 +17,7 @@ namespace android_webview {
bool UseCompositorDirectDraw();
class AwBrowserContext;
+class AwDevToolsDelegate;
class AwBrowserMainParts : public content::BrowserMainParts {
public:
@@ -28,12 +29,14 @@ class AwBrowserMainParts : public content::BrowserMainParts {
virtual int PreCreateThreads() OVERRIDE;
virtual void PreMainMessageLoopRun() OVERRIDE;
virtual bool MainMessageLoopRun(int* result_code) OVERRIDE;
+ virtual void PostMainMessageLoopRun() OVERRIDE;
private:
// Android specific UI MessageLoop.
scoped_ptr<MessageLoop> main_message_loop_;
AwBrowserContext* browser_context_; // weak
+ AwDevToolsDelegate* devtools_delegate_;
DISALLOW_COPY_AND_ASSIGN(AwBrowserMainParts);
};
« no previous file with comments | « android_webview/android_webview.gyp ('k') | android_webview/browser/aw_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698