diff options
author | amit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 01:32:59 +0000 |
---|---|---|
committer | amit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-15 01:32:59 +0000 |
commit | 8a303759c4ed0d9a0c096f2fb8c26e4b7e4c3bd7 (patch) | |
tree | 5fe5e0d7241e83585d3610055f34181d29566f1f /chrome_frame | |
parent | 6d2b85850dd8af053e055e5964091584e2097cce (diff) | |
download | chromium_src-8a303759c4ed0d9a0c096f2fb8c26e4b7e4c3bd7.zip chromium_src-8a303759c4ed0d9a0c096f2fb8c26e4b7e4c3bd7.tar.gz chromium_src-8a303759c4ed0d9a0c096f2fb8c26e4b7e4c3bd7.tar.bz2 |
Merge 44279 - Fix incorrect condition for renderer switching.
TBR=ananta
TEST=covered by existing tests.
Review URL: http://codereview.chromium.org/1600022
TBR=amit@chromium.org
Review URL: http://codereview.chromium.org/1648011
git-svn-id: svn://svn.chromium.org/chrome/branches/375/src@44599 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/urlmon_moniker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/urlmon_moniker.cc b/chrome_frame/urlmon_moniker.cc index f5b01e3..76a5bea 100644 --- a/chrome_frame/urlmon_moniker.cc +++ b/chrome_frame/urlmon_moniker.cc @@ -163,7 +163,7 @@ bool NavigationManager::ResetSwitch(IBindCtx* bind_context) { should_switch.Receive()); hr = bind_context->RevokeObjectParam(kBindContextParamName); - return !!!should_switch; + return !!should_switch; } ///////////////////////////////////////// |