diff options
author | amit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-12 21:28:11 +0000 |
---|---|---|
committer | amit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-12 21:28:11 +0000 |
commit | f0316e15b66ac5c76b54602138f43fa3f54ee6d1 (patch) | |
tree | d69c9e95c8b95f2fb13377919945f95a489718c1 /chrome_frame/urlmon_moniker.cc | |
parent | ec6e240fddecf5670ca890075b0afd28617b7ad4 (diff) | |
download | chromium_src-f0316e15b66ac5c76b54602138f43fa3f54ee6d1.zip chromium_src-f0316e15b66ac5c76b54602138f43fa3f54ee6d1.tar.gz chromium_src-f0316e15b66ac5c76b54602138f43fa3f54ee6d1.tar.bz2 |
Fix incorrect condition for renderer switching.
TBR=ananta
TEST=covered by existing tests.
Review URL: http://codereview.chromium.org/1600022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44279 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/urlmon_moniker.cc')
-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; } ///////////////////////////////////////// |