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 646d1a6dfa378e6d68b77dbf571f8fa5666bb293..5a134090b1c85ecd02c6b2f98fd129568720aad9 100644 |
--- a/chrome/browser/devtools/browser_list_tabcontents_provider.h |
+++ b/chrome/browser/devtools/browser_list_tabcontents_provider.h |
@@ -10,6 +10,7 @@ |
#include "base/basictypes.h" |
#include "base/compiler_specific.h" |
+#include "chrome/browser/ui/host_desktop.h" |
#include "content/public/browser/devtools_http_handler_delegate.h" |
class Profile; |
@@ -17,7 +18,8 @@ class Profile; |
class BrowserListTabContentsProvider |
: public content::DevToolsHttpHandlerDelegate { |
public: |
- explicit BrowserListTabContentsProvider(Profile* profile); |
+ BrowserListTabContentsProvider(Profile* profile, |
+ chrome::HostDesktopType host_desktop_type); |
virtual ~BrowserListTabContentsProvider(); |
// DevToolsHttpProtocolHandler::Delegate overrides. |
@@ -30,6 +32,7 @@ class BrowserListTabContentsProvider |
private: |
Profile* profile_; |
+ chrome::HostDesktopType host_desktop_type_; |
DISALLOW_COPY_AND_ASSIGN(BrowserListTabContentsProvider); |
}; |