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

Unified Diff: net/url_request/url_fetcher.cc

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/url_request/url_fetcher.cc
diff --git a/net/url_request/url_fetcher.cc b/net/url_request/url_fetcher.cc
index 96a25104c3b3d8b18287571104beea69311aeaa3..a9fdd4552067e3bf6b06aa5316797d6e7b70c82c 100644
--- a/net/url_request/url_fetcher.cc
+++ b/net/url_request/url_fetcher.cc
@@ -9,22 +9,21 @@
namespace net {
-URLFetcher::~URLFetcher() {}
+URLFetcher::~URLFetcher() {
+}
// static
-URLFetcher* net::URLFetcher::Create(
- const GURL& url,
- URLFetcher::RequestType request_type,
- URLFetcherDelegate* d) {
+URLFetcher* net::URLFetcher::Create(const GURL& url,
+ URLFetcher::RequestType request_type,
+ URLFetcherDelegate* d) {
return URLFetcher::Create(0, url, request_type, d);
}
// static
-URLFetcher* net::URLFetcher::Create(
- int id,
- const GURL& url,
- URLFetcher::RequestType request_type,
- URLFetcherDelegate* d) {
+URLFetcher* net::URLFetcher::Create(int id,
+ const GURL& url,
+ URLFetcher::RequestType request_type,
+ URLFetcherDelegate* d) {
URLFetcherFactory* factory = URLFetcherImpl::factory();
return factory ? factory->CreateURLFetcher(id, url, request_type, d)
: new URLFetcherImpl(url, request_type, d);

Powered by Google App Engine
This is Rietveld 408576698