diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-23 19:08:02 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-23 19:08:02 +0000 |
commit | 63fb3f856dda398cc82782a6be635a8c55df4f85 (patch) | |
tree | 05a1a4accbf5fbb723fc428091d62b2928192ba1 /chrome_frame/chrome_frame_automation.h | |
parent | bff69fd91bdab01463cb3505ccbbba51cd373d4b (diff) | |
download | chromium_src-63fb3f856dda398cc82782a6be635a8c55df4f85.zip chromium_src-63fb3f856dda398cc82782a6be635a8c55df4f85.tar.gz chromium_src-63fb3f856dda398cc82782a6be635a8c55df4f85.tar.bz2 |
Allow TabContentsDelegate classes to specify whether InfoBars are enabled.
Allow ChromeFrame to pass infobar enabled parameter to ExternalTabContainer.
BUG=2444936
Patch contributed by ericdingle@google.com
Original review at http://codereview.chromium.org/890005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42366 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_automation.h')
-rw-r--r-- | chrome_frame/chrome_frame_automation.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/chrome_frame/chrome_frame_automation.h b/chrome_frame/chrome_frame_automation.h index f01d1b4..bd839a4 100644 --- a/chrome_frame/chrome_frame_automation.h +++ b/chrome_frame/chrome_frame_automation.h @@ -88,6 +88,7 @@ struct ChromeFrameLaunchParams { std::wstring extra_chrome_arguments; bool perform_version_check; bool incognito_mode; + bool is_widget_mode; }; // We must create and destroy automation proxy in a thread with a message loop. @@ -158,11 +159,7 @@ class ChromeFrameAutomationClient // Called from UI thread. virtual bool Initialize(ChromeFrameDelegate* chrome_frame_delegate, - int automation_server_launch_timeout, - bool perform_version_check, - const std::wstring& profile_name, - const std::wstring& extra_chrome_arguments, - bool incognito); + const ChromeFrameLaunchParams& chrome_launch_params); void Uninitialize(); virtual bool InitiateNavigation(const std::string& url, |