diff options
author | amit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-30 21:37:04 +0000 |
---|---|---|
committer | amit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-30 21:37:04 +0000 |
commit | a8af771d9040b87f64b3a85131cfa0e265ac5639 (patch) | |
tree | 6cd5020fcda0b6616be7fec09bd2307743763fc0 /chrome/test/automation/automation_proxy_uitest.cc | |
parent | 23cc9a18ab9c4893e3cad94c3683e7ffecefcbf0 (diff) | |
download | chromium_src-a8af771d9040b87f64b3a85131cfa0e265ac5639.zip chromium_src-a8af771d9040b87f64b3a85131cfa0e265ac5639.tar.gz chromium_src-a8af771d9040b87f64b3a85131cfa0e265ac5639.tar.bz2 |
ChromeURLRequestContext fallout
Fix the issues caused by static_cast<ChromeURLRequestContext*>.
There were assumptions in the code that a URLRequestContext*
will always be ChromeURLRequestContext* and resulting
'static_cast's. This assumption is no longer true. Instead,
URLlRequestContext now has a member GetChromeURLRequestContext
that returns a ChromeURLRequestContext* if it really that type.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/160332
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22104 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/automation_proxy_uitest.cc')
-rw-r--r-- | chrome/test/automation/automation_proxy_uitest.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc index 02e77f7..75395af 100644 --- a/chrome/test/automation/automation_proxy_uitest.cc +++ b/chrome/test/automation/automation_proxy_uitest.cc @@ -811,6 +811,7 @@ TEST_F(ExternalTabTestType, IncognitoMode) { gfx::Rect(), WS_POPUP, true, + false, false }; HWND external_tab_container = NULL; @@ -849,6 +850,7 @@ TEST_F(ExternalTabTestType, ExternalTabPostMessage) { gfx::Rect(), WS_POPUP, false, + false, false }; HWND external_tab_container = NULL; @@ -892,6 +894,7 @@ TEST_F(ExternalTabTestType, ExternalTabPostMessageTarget) { gfx::Rect(), WS_POPUP, false, + false, false }; HWND external_tab_container = NULL; |