diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 14:10:14 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-13 14:10:14 +0000 |
commit | 7a0c14d18c721f08332eaab1094e918027e0b132 (patch) | |
tree | 6ef361568f30cff05f9c9ad2e84890f6bf10deb0 /net/http | |
parent | 61d68ef1198bf59e4e317f3f61e780564f99be3e (diff) | |
download | chromium_src-7a0c14d18c721f08332eaab1094e918027e0b132.zip chromium_src-7a0c14d18c721f08332eaab1094e918027e0b132.tar.gz chromium_src-7a0c14d18c721f08332eaab1094e918027e0b132.tar.bz2 |
Remove unnecessary const from HttpAuthCache to appease the clang gods.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/6303001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71321 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_auth_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/http_auth_cache.h b/net/http/http_auth_cache.h index ecdcb35..a130956 100644 --- a/net/http/http_auth_cache.h +++ b/net/http/http_auth_cache.h @@ -122,7 +122,7 @@ class HttpAuthCache::Entry { } // The authentication scheme of the challenge. - const HttpAuth::Scheme scheme() const { + HttpAuth::Scheme scheme() const { return scheme_; } |