Index: net/url_request/url_fetcher.h |
diff --git a/net/url_request/url_fetcher.h b/net/url_request/url_fetcher.h |
index a841ddd342a6b06a89e64fb7a289375cfce4c376..e0ce7af67a750f1eec5854cc2e0b5da889511322 100644 |
--- a/net/url_request/url_fetcher.h |
+++ b/net/url_request/url_fetcher.h |
@@ -71,16 +71,14 @@ class NET_EXPORT URLFetcher { |
public: |
// Imposible http response code. Used to signal that no http response code |
// was received. |
- enum ResponseCode { |
- RESPONSE_CODE_INVALID = -1 |
- }; |
+ enum ResponseCode { RESPONSE_CODE_INVALID = -1 }; |
enum RequestType { |
GET, |
POST, |
HEAD, |
- DELETE_REQUEST, // DELETE is already taken on Windows. |
- // <winnt.h> defines a DELETE macro. |
+ DELETE_REQUEST, // DELETE is already taken on Windows. |
+ // <winnt.h> defines a DELETE macro. |
PUT, |
PATCH, |
}; |
@@ -194,8 +192,7 @@ class NET_EXPORT URLFetcher { |
// Set the URL that should be consulted for the third-party cookie |
// blocking policy. |
- virtual void SetFirstPartyForCookies( |
- const GURL& first_party_for_cookies) = 0; |
+ virtual void SetFirstPartyForCookies(const GURL& first_party_for_cookies) = 0; |
// Set the key and data callback that is used when setting the user |
// data on any URLRequest objects this object creates. |