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

Unified Diff: net/http/http_auth.h

Issue 10854063: Clean-up inline members of nested classes (net/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 8 years, 4 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
Index: net/http/http_auth.h
diff --git a/net/http/http_auth.h b/net/http/http_auth.h
index a42fc2063dcf1a05618108de76b2ddd4900f8f5a..364f933bcc388678e23fb042eec454bb6e3a131f 100644
--- a/net/http/http_auth.h
+++ b/net/http/http_auth.h
@@ -178,15 +178,7 @@ class NET_EXPORT_PRIVATE HttpAuth {
class NET_EXPORT_PRIVATE ChallengeTokenizer {
public:
ChallengeTokenizer(std::string::const_iterator begin,
- std::string::const_iterator end)
- : begin_(begin),
- end_(end),
- scheme_begin_(begin),
- scheme_end_(begin),
- params_begin_(end),
- params_end_(end) {
- Init(begin, end);
- }
+ std::string::const_iterator end);
// Get the original text.
std::string challenge_text() const {

Powered by Google App Engine
This is Rietveld 408576698