summaryrefslogtreecommitdiffstats
path: root/chrome_frame/urlmon_moniker.cc
diff options
context:
space:
mode:
authoramit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-12 21:28:11 +0000
committeramit@chromium.org <amit@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-12 21:28:11 +0000
commitf0316e15b66ac5c76b54602138f43fa3f54ee6d1 (patch)
treed69c9e95c8b95f2fb13377919945f95a489718c1 /chrome_frame/urlmon_moniker.cc
parentec6e240fddecf5670ca890075b0afd28617b7ad4 (diff)
downloadchromium_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.cc2
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;
}
/////////////////////////////////////////