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

Unified Diff: net/http/http_auth_challenge_tokenizer.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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_challenge_tokenizer.h
diff --git a/net/http/http_auth_challenge_tokenizer.h b/net/http/http_auth_challenge_tokenizer.h
index a73f19205b6a9d37511123f3edfc6b4aae0fb14b..6a3fd935eac886a219ab7c6425a7cdb279443258 100644
--- a/net/http/http_auth_challenge_tokenizer.h
+++ b/net/http/http_auth_challenge_tokenizer.h
@@ -26,16 +26,12 @@ class NET_EXPORT_PRIVATE HttpAuthChallengeTokenizer {
std::string::const_iterator end);
// Get the original text.
- std::string challenge_text() const {
- return std::string(begin_, end_);
- }
+ std::string challenge_text() const { return std::string(begin_, end_); }
// Get the auth scheme of the challenge.
std::string::const_iterator scheme_begin() const { return scheme_begin_; }
std::string::const_iterator scheme_end() const { return scheme_end_; }
- std::string scheme() const {
- return std::string(scheme_begin_, scheme_end_);
- }
+ std::string scheme() const { return std::string(scheme_begin_, scheme_end_); }
std::string::const_iterator params_begin() const { return params_begin_; }
std::string::const_iterator params_end() const { return params_end_; }
@@ -43,8 +39,7 @@ class NET_EXPORT_PRIVATE HttpAuthChallengeTokenizer {
std::string base64_param() const;
private:
- void Init(std::string::const_iterator begin,
- std::string::const_iterator end);
+ void Init(std::string::const_iterator begin, std::string::const_iterator end);
std::string::const_iterator begin_;
std::string::const_iterator end_;

Powered by Google App Engine
This is Rietveld 408576698