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

Unified Diff: net/http/http_auth_cache.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_cache.h
diff --git a/net/http/http_auth_cache.h b/net/http/http_auth_cache.h
index 707a571db96c1faacaa957521a10af4574a33cbb..4e430b035f3dd8c741072ce673c151b4b3343094 100644
--- a/net/http/http_auth_cache.h
+++ b/net/http/http_auth_cache.h
@@ -31,33 +31,21 @@ class NET_EXPORT_PRIVATE HttpAuthCache {
public:
~Entry();
- const GURL& origin() const {
- return origin_;
- }
+ const GURL& origin() const { return origin_; }
// The case-sensitive realm string of the challenge.
- const std::string realm() const {
- return realm_;
- }
+ const std::string realm() const { return realm_; }
// The authentication scheme of the challenge.
- HttpAuth::Scheme scheme() const {
- return scheme_;
- }
+ HttpAuth::Scheme scheme() const { return scheme_; }
// The authentication challenge.
- const std::string auth_challenge() const {
- return auth_challenge_;
- }
+ const std::string auth_challenge() const { return auth_challenge_; }
// The login credentials.
- const AuthCredentials& credentials() const {
- return credentials_;
- }
+ const AuthCredentials& credentials() const { return credentials_; }
- int IncrementNonceCount() {
- return ++nonce_count_;
- }
+ int IncrementNonceCount() { return ++nonce_count_; }
void UpdateStaleChallenge(const std::string& auth_challenge);

Powered by Google App Engine
This is Rietveld 408576698