diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 21:13:16 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 21:13:16 +0000 |
commit | 69e4b61b7bfc27a6eefb1bcd1483e47f4a7777b1 (patch) | |
tree | 69dcf67b49eb02cefd2a87d418c90844735f76a2 /chrome_frame/utils.cc | |
parent | f57075e5ad3bd3601ed621cc4bf0deb37d1dd52e (diff) | |
download | chromium_src-69e4b61b7bfc27a6eefb1bcd1483e47f4a7777b1.zip chromium_src-69e4b61b7bfc27a6eefb1bcd1483e47f4a7777b1.tar.gz chromium_src-69e4b61b7bfc27a6eefb1bcd1483e47f4a7777b1.tar.bz2 |
Export the new sessionid property of Chrome Frame form the NPAPI interface.
BUG=0
TEST=see included unit test
Review URL: http://codereview.chromium.org/5331003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/utils.cc')
-rw-r--r-- | chrome_frame/utils.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index 294f044..8fd90fc 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.cc @@ -62,8 +62,9 @@ const wchar_t kEnableGCFRendererByDefault[] = L"IsDefaultRenderer"; const wchar_t kIexploreProfileName[] = L"iexplore"; const wchar_t kRundllProfileName[] = L"rundll32"; -static const wchar_t kAllowUnsafeURLs[] = L"AllowUnsafeURLs"; -static const wchar_t kEnableBuggyBhoIntercept[] = L"EnableBuggyBhoIntercept"; +const wchar_t kAllowUnsafeURLs[] = L"AllowUnsafeURLs"; +const wchar_t kEnableBuggyBhoIntercept[] = L"EnableBuggyBhoIntercept"; +const wchar_t kEnableFirefoxPrivilegeMode[] = L"EnableFirefoxPrivilegeMode"; static const wchar_t kChromeFrameNPAPIKey[] = L"Software\\MozillaPlugins\\@google.com/ChromeFrame,version=1.0"; |