diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 03:47:43 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 03:47:43 +0000 |
commit | 7ab36c4f07b585449febcc6f2c59a9f5a0a40eed (patch) | |
tree | 72c59f9c527a7276fa7d94d7d7ba0e9d31c320af /chrome_frame/protocol_sink_wrap.h | |
parent | db1cad416f942052953deda261035186535349c9 (diff) | |
download | chromium_src-7ab36c4f07b585449febcc6f2c59a9f5a0a40eed.zip chromium_src-7ab36c4f07b585449febcc6f2c59a9f5a0a40eed.tar.gz chromium_src-7ab36c4f07b585449febcc6f2c59a9f5a0a40eed.tar.bz2 |
Support GCF as the default HTML viewer as well as supporting an exclusion list.
Now, there are two URL lists that we support and a master REG_DWORD value ("IsDefaultRenderer" ) to switch between them.
Note that the OptInUrls key is no longer supported but the URL lists mentioned below function in the same way OptInUrls used to.
This is basically how it works:
if IsDefaultRenderer
Url list name is "RenderInHostUrls" and lists patterns that the host (IE) should render.
if not IsDefaultRenderer (i.e. it's 0)
Url list name is "RenderInGcfUrls" and lists patterns that GCF should render.
Also fixing typo :)
TEST=See description above and in bug report.
BUG= 50788
Review URL: http://codereview.chromium.org/3131003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55664 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/protocol_sink_wrap.h')
-rw-r--r-- | chrome_frame/protocol_sink_wrap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/protocol_sink_wrap.h b/chrome_frame/protocol_sink_wrap.h index c10c4c5..1d6c178 100644 --- a/chrome_frame/protocol_sink_wrap.h +++ b/chrome_frame/protocol_sink_wrap.h @@ -174,7 +174,7 @@ class ProtData : public base::RefCounted<ProtData> { HRESULT FillBuffer(); void SaveSuggestedMimeType(LPCWSTR status_text); - void FireSugestedMimeType(IInternetProtocolSink* delegate); + void FireSuggestedMimeType(IInternetProtocolSink* delegate); void SaveReferrer(IInternetProtocolSink* delegate); }; |