diff options
author | twiz@google.com <twiz@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 17:03:14 +0000 |
---|---|---|
committer | twiz@google.com <twiz@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 17:03:14 +0000 |
commit | 8f56e617feb0bf1ecfb789458db52976a7d74a86 (patch) | |
tree | 8e0025ae1b6b72f31211cd876c375baf6278423f /chrome_frame/chrome_frame_activex_base.h | |
parent | 6b4583fef71394eb1f2fc57250e89b1c4db8bb4b (diff) | |
download | chromium_src-8f56e617feb0bf1ecfb789458db52976a7d74a86.zip chromium_src-8f56e617feb0bf1ecfb789458db52976a7d74a86.tar.gz chromium_src-8f56e617feb0bf1ecfb789458db52976a7d74a86.tar.bz2 |
For for CF test failure introduced by CL (http://codereview.chromium.org/3295019)
The problem is that by allowing ActiveX controls to hook top-level requests, the redirect in the ChromeFrameTestWithWebServer.WidgetModeIE_SrcProperty was being forwarded to the host browser in IE8.
BUG=54920
TEST=ChromeFrameTestWithWebServer.WidgetModeIE_SrcProperty
TBR=ananta
Review URL: http://codereview.chromium.org/3325019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58950 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/chrome_frame_activex_base.h')
-rw-r--r-- | chrome_frame/chrome_frame_activex_base.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome_frame/chrome_frame_activex_base.h b/chrome_frame/chrome_frame_activex_base.h index de08d9a..10ad0d9 100644 --- a/chrome_frame/chrome_frame_activex_base.h +++ b/chrome_frame/chrome_frame_activex_base.h @@ -37,8 +37,6 @@ // Include without path to make GYP build see it. #include "chrome_tab.h" // NOLINT -static const wchar_t kUseChromeNetworking[] = L"UseChromeNetworking"; -static const wchar_t kHandleTopLevelRequests[] = L"HandleTopLevelRequests"; // Connection point class to support firing IChromeFrameEvents (dispinterface). template<class T> @@ -268,13 +266,6 @@ END_MSG_MAP() IE_8 + 1); } - // Query and assign the host networking and top-level-request settings - // from the registry. - bool chrome_network = GetConfigBool(false, kUseChromeNetworking); - bool top_level_requests = GetConfigBool(true, kHandleTopLevelRequests); - automation_client_->set_use_chrome_network(chrome_network); - automation_client_->set_handle_top_level_requests(top_level_requests); - return S_OK; } |