| 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_;
|
|
|