diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-03 23:10:55 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-03 23:10:55 +0000 |
commit | e150e821ae4aaeb16ed820724e1ca503de3c5319 (patch) | |
tree | c746117e5db6e4dccd9a5a810710d168e997b0db /chrome_frame/chrome_frame_npapi.cc | |
parent | 557e7f8ae443342f60ba537afe00e6eb789e8208 (diff) | |
download | chromium_src-e150e821ae4aaeb16ed820724e1ca503de3c5319.zip chromium_src-e150e821ae4aaeb16ed820724e1ca503de3c5319.tar.gz chromium_src-e150e821ae4aaeb16ed820724e1ca503de3c5319.tar.bz2 |
Navigating to a page in ChromeFrame in IE would display the sad tab page briefly until the navigation was initiated from IE.
We have code in the ChromeFrame external tab container to initiate the navigation during initialization if we have a valid url
passed in while creating the external tab. The URL would not get passed down even though it was available from ChromeFrame.
This fixes bug http://code.google.com/p/chromium/issues/detail?id=43482
Bug=43482
Review URL: http://codereview.chromium.org/2600002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48890 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_npapi.cc')
-rw-r--r-- | chrome_frame/chrome_frame_npapi.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome_frame/chrome_frame_npapi.cc b/chrome_frame/chrome_frame_npapi.cc index f6a0174..241a0ef 100644 --- a/chrome_frame/chrome_frame_npapi.cc +++ b/chrome_frame/chrome_frame_npapi.cc @@ -272,7 +272,8 @@ bool ChromeFrameNPAPI::Initialize(NPMIMEType mime_type, NPP instance, // TODO(stoyan): Ask host for specific interface whether to honor // host's in-private mode. return InitializeAutomation(profile_name, extra_arguments, - GetBrowserIncognitoMode(), true); + GetBrowserIncognitoMode(), true, + GURL(src_), GURL()); } void ChromeFrameNPAPI::Uninitialize() { |