summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_npapi.cc
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-03 23:10:55 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-03 23:10:55 +0000
commite150e821ae4aaeb16ed820724e1ca503de3c5319 (patch)
treec746117e5db6e4dccd9a5a810710d168e997b0db /chrome_frame/chrome_frame_npapi.cc
parent557e7f8ae443342f60ba537afe00e6eb789e8208 (diff)
downloadchromium_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.cc3
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() {