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

Unified Diff: chrome/browser/debugger/browser_list_tabcontents_provider.h

Issue 8554008: Add content API for DevTools HTTP handler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unnecessary comment from the public interface Created 9 years 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 | « no previous file | chrome/browser/debugger/browser_list_tabcontents_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/browser_list_tabcontents_provider.h
diff --git a/chrome/browser/debugger/browser_list_tabcontents_provider.h b/chrome/browser/debugger/browser_list_tabcontents_provider.h
index 7fdc2d02fe495cff26734afafa65f8807c1b6ff8..023db09b8f6b626dac869f71f45a04eb23686234 100644
--- a/chrome/browser/debugger/browser_list_tabcontents_provider.h
+++ b/chrome/browser/debugger/browser_list_tabcontents_provider.h
@@ -6,19 +6,23 @@
#define CHROME_BROWSER_DEBUGGER_BROWSER_LIST_TABCONTENTS_PROVIDER_H_
#include <string>
-#include "content/browser/debugger/devtools_http_protocol_handler.h"
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "content/public/browser/devtools_http_handler_delegate.h"
class BrowserListTabContentsProvider
- : public DevToolsHttpProtocolHandler::Delegate {
+ : public content::DevToolsHttpHandlerDelegate {
public:
BrowserListTabContentsProvider() {}
virtual ~BrowserListTabContentsProvider() {}
// DevToolsHttpProtocolHandler::Delegate overrides.
- virtual DevToolsHttpProtocolHandler::InspectableTabs
+ virtual DevToolsHttpHandlerDelegate::InspectableTabs
GetInspectableTabs() OVERRIDE;
virtual std::string GetDiscoveryPageHTML() OVERRIDE;
virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE;
+
private:
DISALLOW_COPY_AND_ASSIGN(BrowserListTabContentsProvider);
};
« no previous file with comments | « no previous file | chrome/browser/debugger/browser_list_tabcontents_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698