Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1245)

Unified Diff: net/http/http_auth_handler.h

Issue 10916272: Remove HttpAuth::Scheme enum in favor of a string. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_auth_controller_unittest.cc ('k') | net/http/http_auth_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_handler.h
diff --git a/net/http/http_auth_handler.h b/net/http/http_auth_handler.h
index 638bb44aed3dba4953c362ba9b5484146d706617..2c002c51735ac7ed7f6ed29bd06188ad08bf231d 100644
--- a/net/http/http_auth_handler.h
+++ b/net/http/http_auth_handler.h
@@ -76,7 +76,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandler {
std::string* auth_token);
// The authentication scheme as an enumerated value.
- HttpAuth::Scheme auth_scheme() const {
+ std::string auth_scheme() const {
return auth_scheme_;
}
@@ -162,7 +162,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandler {
std::string* auth_token) = 0;
// The auth-scheme as an enumerated value.
- HttpAuth::Scheme auth_scheme_;
+ std::string auth_scheme_;
// The realm, encoded as UTF-8. Used by "basic" and "digest".
std::string realm_;
« no previous file with comments | « net/http/http_auth_controller_unittest.cc ('k') | net/http/http_auth_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698