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

Unified Diff: content/browser/devtools/render_view_devtools_agent_host.h

Issue 12319114: Extract debugger target enumeration into a separate class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@debugger
Patch Set: Fixed compile 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
Index: content/browser/devtools/render_view_devtools_agent_host.h
diff --git a/content/browser/devtools/render_view_devtools_agent_host.h b/content/browser/devtools/render_view_devtools_agent_host.h
index 30571868ec00182a729a956c7c297536a9867d91..1a847a647898c630aac27ec0074fd06493eedf75 100644
--- a/content/browser/devtools/render_view_devtools_agent_host.h
+++ b/content/browser/devtools/render_view_devtools_agent_host.h
@@ -18,6 +18,7 @@
namespace content {
class DevToolsAgentHostRvhObserver;
+class NavigationEntry;
pfeldman 2013/03/05 12:06:41 You don't seem to need this.
Vladislav Kaznacheev 2013/03/05 13:35:44 Done.
class RendererOverridesHandler;
class RenderViewHost;
@@ -41,6 +42,12 @@ class CONTENT_EXPORT RenderViewDevToolsAgentHost
// DevTooolsAgentHost overrides.
virtual RenderViewHost* GetRenderViewHost() OVERRIDE;
+ virtual std::string GetTitle() OVERRIDE;
+
+ virtual GURL GetUrl() OVERRIDE;
+
+ virtual GURL GetFaviconUrl() OVERRIDE;
+
// DevToolsAgentHostImpl overrides.
virtual void DispatchOnInspectorBackend(const std::string& message) OVERRIDE;
virtual void SendMessageToAgent(IPC::Message* msg) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698