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

Side by Side Diff: android_webview/browser/aw_devtools_delegate.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, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DELEGATE_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DELEGATE_H_
7
8 #include <vector>
9
10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h"
12 #include "content/public/browser/devtools_http_handler_delegate.h"
13
14 namespace content {
15 class BrowserContext;
16 class DevToolsHttpHandler;
17 }
18
19 namespace android_webview {
20
21 class AwDevToolsDelegate : public content::DevToolsHttpHandlerDelegate {
22 public:
23 AwDevToolsDelegate(content::BrowserContext* browser_context);
24 virtual ~AwDevToolsDelegate();
25
26 // Stops http server.
27 void Stop();
28
29 // DevToolsHttpProtocolHandler::Delegate overrides.
30 virtual std::string GetDiscoveryPageHTML() OVERRIDE;
31 virtual bool BundlesFrontendResources() OVERRIDE;
32 virtual base::FilePath GetDebugFrontendDir() OVERRIDE;
33 virtual std::string GetPageThumbnailData(const GURL& url) OVERRIDE;
34 virtual content::RenderViewHost* CreateNewTarget() OVERRIDE;
35 virtual TargetType GetTargetType(content::RenderViewHost*) OVERRIDE;
36
37 content::DevToolsHttpHandler* devtools_http_handler() {
38 return devtools_http_handler_;
39 }
40
41 private:
42 content::BrowserContext* browser_context_;
43 content::DevToolsHttpHandler* devtools_http_handler_;
44
45 DISALLOW_COPY_AND_ASSIGN(AwDevToolsDelegate);
46 };
47
48 } // namespace android_webview
49
50 #endif // ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DELEGATE_H_
OLDNEW
« no previous file with comments | « android_webview/browser/aw_browser_main_parts.cc ('k') | android_webview/browser/aw_devtools_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698