diff options
author | rob@robwu.nl <rob@robwu.nl@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-10 21:43:34 +0000 |
---|---|---|
committer | rob@robwu.nl <rob@robwu.nl@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-10 21:43:34 +0000 |
commit | a49151501ebc512f0c2caffe35ddeafd89fff046 (patch) | |
tree | fc46b2ab30d0bc8329d7b27bd79b95b9604a6345 /extensions/common/url_pattern.h | |
parent | f951ee8b1c9c99577e32f65665d4a10ea855d80f (diff) | |
download | chromium_src-a49151501ebc512f0c2caffe35ddeafd89fff046.zip chromium_src-a49151501ebc512f0c2caffe35ddeafd89fff046.tar.gz chromium_src-a49151501ebc512f0c2caffe35ddeafd89fff046.tar.bz2 |
Remove unimplemented and unused IsSchemeBitSet method
The IsSchemeBitSet method was added in https://chromiumcodereview.appspot.com/12792005/#ps4001,
but removed during a refactor within the same CL. It was never used, so it can be removed.
Review URL: https://codereview.chromium.org/233293004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/common/url_pattern.h')
-rw-r--r-- | extensions/common/url_pattern.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/extensions/common/url_pattern.h b/extensions/common/url_pattern.h index a04a2f2..fa16c51 100644 --- a/extensions/common/url_pattern.h +++ b/extensions/common/url_pattern.h @@ -189,9 +189,6 @@ class URLPattern { // Get an error string for a ParseResult. static const char* GetParseResultString(URLPattern::ParseResult parse_result); - // Checks whether the bit is set for the given scheme in the given scheme mask - static bool IsSchemeBitSet(const std::string& scheme, const int mask); - private: // Returns true if any of the |schemes| items matches our scheme. bool MatchesAnyScheme(const std::vector<std::string>& schemes) const; |