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

Unified Diff: net/proxy/mock_proxy_script_fetcher.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/proxy/mock_proxy_resolver.cc ('k') | net/proxy/mock_proxy_script_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/mock_proxy_script_fetcher.h
diff --git a/net/proxy/mock_proxy_script_fetcher.h b/net/proxy/mock_proxy_script_fetcher.h
deleted file mode 100644
index 458f477337bb11de3e243fb7652412b585b94c4a..0000000000000000000000000000000000000000
--- a/net/proxy/mock_proxy_script_fetcher.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_
-#define NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_
-
-#include "base/compiler_specific.h"
-#include "net/proxy/proxy_script_fetcher.h"
-#include "url/gurl.h"
-
-#include <string>
-
-namespace net {
-
-class URLRequestContext;
-
-// A mock ProxyScriptFetcher. No result will be returned to the fetch client
-// until we call NotifyFetchCompletion() to set the results.
-class MockProxyScriptFetcher : public ProxyScriptFetcher {
- public:
- MockProxyScriptFetcher();
- ~MockProxyScriptFetcher() override;
-
- // ProxyScriptFetcher implementation.
- int Fetch(const GURL& url,
- base::string16* text,
- const CompletionCallback& callback) override;
- void Cancel() override;
- URLRequestContext* GetRequestContext() const override;
-
- void NotifyFetchCompletion(int result, const std::string& ascii_text);
- const GURL& pending_request_url() const;
- bool has_pending_request() const;
-
- // Spins the message loop until this->Fetch() is invoked.
- void WaitUntilFetch();
-
- private:
- GURL pending_request_url_;
- CompletionCallback pending_request_callback_;
- base::string16* pending_request_text_;
- bool waiting_for_fetch_;
-};
-
-} // namespace net
-
-#endif // NET_PROXY_MOCK_PROXY_SCRIPT_FETCHER_H_
« no previous file with comments | « net/proxy/mock_proxy_resolver.cc ('k') | net/proxy/mock_proxy_script_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698