summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_protocol_handler.h
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-17 04:00:57 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-17 04:00:57 +0000
commita65175d452e6cb3c9c3599ab4206c42b8ab78bfd (patch)
treeae69bde6df9080e4e367c23bba9096a1bf302c60 /chrome/browser/external_protocol_handler.h
parentd9e0c26a9c2850d42c4de6b2f981a8da56497c2c (diff)
downloadchromium_src-a65175d452e6cb3c9c3599ab4206c42b8ab78bfd.zip
chromium_src-a65175d452e6cb3c9c3599ab4206c42b8ab78bfd.tar.gz
chromium_src-a65175d452e6cb3c9c3599ab4206c42b8ab78bfd.tar.bz2
Remove deprecated wstring DictionaryValue Get{Boolean,Integer,Real,Binary,Dictionary,List}().
BUG=23581 TEST=builds and passes tests Review URL: http://codereview.chromium.org/3187004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56302 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_protocol_handler.h')
-rw-r--r--chrome/browser/external_protocol_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/external_protocol_handler.h b/chrome/browser/external_protocol_handler.h
index 6643da8..f822cc8 100644
--- a/chrome/browser/external_protocol_handler.h
+++ b/chrome/browser/external_protocol_handler.h
@@ -21,10 +21,10 @@ class ExternalProtocolHandler {
};
// Returns whether we should block a given scheme.
- static BlockState GetBlockState(const std::wstring& scheme);
+ static BlockState GetBlockState(const std::string& scheme);
// Sets whether we should block a given scheme.
- static void SetBlockState(const std::wstring& scheme, BlockState state);
+ static void SetBlockState(const std::string& scheme, BlockState state);
// Checks to see if the protocol is allowed, if it is whitelisted,
// the application associated with the protocol is launched on the io thread,