diff options
author | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-22 11:28:06 +0000 |
---|---|---|
committer | gab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-22 11:28:06 +0000 |
commit | 55d34240a87133fa567440dd6000d16f4fedf876 (patch) | |
tree | 55eb12c48bf653ab05ce305a48d1f42e978b04b7 /chrome/browser/browser_process.h | |
parent | 1620b2a4ac638f27cb7c864b0a0413bce5cd4e90 (diff) | |
download | chromium_src-55d34240a87133fa567440dd6000d16f4fedf876.zip chromium_src-55d34240a87133fa567440dd6000d16f4fedf876.tar.gz chromium_src-55d34240a87133fa567440dd6000d16f4fedf876.tar.bz2 |
Plumb HostDesktopType through BrowserListTabContentsProvider.
Although LaunchDevToolsHandlerIfNeeded (in chrome_browser_main.cc) is the only user via the remote dev tools debugger, the API is rather generic and it made more sense to plumb the HostDesktopType through even if we end up hardcoding it in the only caller.
Also removes chrome::NewEmptyWindowDeprecated().
BUG=129187
Review URL: https://chromiumcodereview.appspot.com/12328029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184094 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index 40f70b5..f5e54b8 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -13,6 +13,7 @@ #include <string> #include "base/basictypes.h" +#include "chrome/browser/ui/host_desktop.h" class AutomationProviderList; class BackgroundModeManager; @@ -154,6 +155,7 @@ class BrowserProcess { virtual void CreateDevToolsHttpProtocolHandler( Profile* profile, + chrome::HostDesktopType host_desktop_type, const std::string& ip, int port, const std::string& frontend_url) = 0; |