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

Unified Diff: net/proxy/mock_proxy_script_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/proxy/mock_proxy_script_fetcher.cc
diff --git a/net/proxy/mock_proxy_script_fetcher.cc b/net/proxy/mock_proxy_script_fetcher.cc
index 7604b5b34b1955cc0cbe47ce17f6ca527f3cce0a..5a516ae4daa4e76549d4914c9d650595d9a1c112 100644
--- a/net/proxy/mock_proxy_script_fetcher.cc
+++ b/net/proxy/mock_proxy_script_fetcher.cc
@@ -13,14 +13,15 @@
namespace net {
MockProxyScriptFetcher::MockProxyScriptFetcher()
- : pending_request_text_(NULL),
- waiting_for_fetch_(false) {
+ : pending_request_text_(NULL), waiting_for_fetch_(false) {
}
-MockProxyScriptFetcher::~MockProxyScriptFetcher() {}
+MockProxyScriptFetcher::~MockProxyScriptFetcher() {
+}
// ProxyScriptFetcher implementation.
-int MockProxyScriptFetcher::Fetch(const GURL& url, base::string16* text,
+int MockProxyScriptFetcher::Fetch(const GURL& url,
+ base::string16* text,
const CompletionCallback& callback) {
DCHECK(!has_pending_request());
@@ -36,7 +37,8 @@ int MockProxyScriptFetcher::Fetch(const GURL& url, base::string16* text,
}
void MockProxyScriptFetcher::NotifyFetchCompletion(
- int result, const std::string& ascii_text) {
+ int result,
+ const std::string& ascii_text) {
DCHECK(has_pending_request());
*pending_request_text_ = base::ASCIIToUTF16(ascii_text);
CompletionCallback callback = pending_request_callback_;

Powered by Google App Engine
This is Rietveld 408576698