diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-12 23:31:50 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-12 23:31:50 +0000 |
commit | e3a87d33face039a7445e4262e00c7c00ab4c725 (patch) | |
tree | 26804041c2a078797736208e83514332aa478c7e /chrome/browser/extensions/extension_cookies_helpers.h | |
parent | 432e5580710592e47169679d5c2cb569904c015a (diff) | |
download | chromium_src-e3a87d33face039a7445e4262e00c7c00ab4c725.zip chromium_src-e3a87d33face039a7445e4262e00c7c00ab4c725.tar.gz chromium_src-e3a87d33face039a7445e4262e00c7c00ab4c725.tar.bz2 |
Convert wide strings in extension_cookies_api_constants.
BUG=23581
TEST=builds and passes tests
Review URL: http://codereview.chromium.org/3171007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55961 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_cookies_helpers.h')
-rw-r--r-- | chrome/browser/extensions/extension_cookies_helpers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_cookies_helpers.h b/chrome/browser/extensions/extension_cookies_helpers.h index c7a5056..7bb33d2 100644 --- a/chrome/browser/extensions/extension_cookies_helpers.h +++ b/chrome/browser/extensions/extension_cookies_helpers.h @@ -94,12 +94,12 @@ class MatchFilter { // Returns true if the details dictionary contains a string with the given // key and value. Also returns true if the dictionary doesn't contain the // given key at all (trival match). - bool MatchesString(const wchar_t* key, const std::string& value); + bool MatchesString(const char* key, const std::string& value); // Returns true if the details dictionary contains a boolean with the given // key and value. Also returns true if the dictionary doesn't contain the // given key at all (trival match). - bool MatchesBoolean(const wchar_t* key, bool value); + bool MatchesBoolean(const char* key, bool value); // Returns true if the given cookie domain string matches the filter's // domain. Any cookie domain which is equal to or is a subdomain of the |