| 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);
|
| };
|
|
|