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

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

Issue 15305014: Remove reference to profile in devtools remote debugging initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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: chrome/browser/devtools/browser_list_tabcontents_provider.h
diff --git a/chrome/browser/devtools/browser_list_tabcontents_provider.h b/chrome/browser/devtools/browser_list_tabcontents_provider.h
index 664d907ec7c6731c3d3dd2d6e11b739b51892a16..7994772cc53386c6087ead7048697ac190e403c7 100644
--- a/chrome/browser/devtools/browser_list_tabcontents_provider.h
+++ b/chrome/browser/devtools/browser_list_tabcontents_provider.h
@@ -13,13 +13,11 @@
#include "chrome/browser/ui/host_desktop.h"
#include "content/public/browser/devtools_http_handler_delegate.h"
-class Profile;
-
class BrowserListTabContentsProvider
: public content::DevToolsHttpHandlerDelegate {
public:
- BrowserListTabContentsProvider(Profile* profile,
- chrome::HostDesktopType host_desktop_type);
+ explicit BrowserListTabContentsProvider(
+ chrome::HostDesktopType host_desktop_type);
virtual ~BrowserListTabContentsProvider();
// DevToolsHttpProtocolHandler::Delegate overrides.
@@ -35,7 +33,6 @@ class BrowserListTabContentsProvider
std::string* name) OVERRIDE;
private:
- Profile* profile_;
chrome::HostDesktopType host_desktop_type_;
DISALLOW_COPY_AND_ASSIGN(BrowserListTabContentsProvider);
};

Powered by Google App Engine
This is Rietveld 408576698