diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-06 14:26:16 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-06 14:26:16 +0000 |
commit | 3fbf614b560b25437b321f18fd798d4bd7241070 (patch) | |
tree | 7861f709d1b2a782f3629c4cf1190a5e074428e6 /chrome_frame | |
parent | b6cba0641b65540f066cd7dc1e06667cf8800c51 (diff) | |
download | chromium_src-3fbf614b560b25437b321f18fd798d4bd7241070.zip chromium_src-3fbf614b560b25437b321f18fd798d4bd7241070.tar.gz chromium_src-3fbf614b560b25437b321f18fd798d4bd7241070.tar.bz2 |
Fix the ChromeFrame build bot redness caused by us incorrectly wrapping protocol sinks which don't
have an associated IWebBrowser.
TBR=robertshield
Review URL: http://codereview.chromium.org/469003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/utils.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index 460f8d8..1edbee9 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.cc @@ -661,6 +661,8 @@ bool IsSubFrameRequest(IUnknown* service_provider) { is_non_top_level_request = true; } } + } else { + is_non_top_level_request = true; } return is_non_top_level_request; |