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

Unified Diff: content/public/test/test_url_loader_client.h

Issue 2968293002: Introduce SystemNetworkContextManager. (Closed)
Patch Set: Response to comments Created 3 years, 5 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 | « content/public/network/network_service.h ('k') | content/public/test/test_url_loader_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_url_loader_client.h
diff --git a/content/browser/loader/test_url_loader_client.h b/content/public/test/test_url_loader_client.h
similarity index 95%
rename from content/browser/loader/test_url_loader_client.h
rename to content/public/test/test_url_loader_client.h
index bb5e249a5ef58ced5bd27b453824171f3714705f..c5d5a7052111056085c701a63ccea31dd13d61bb 100644
--- a/content/browser/loader/test_url_loader_client.h
+++ b/content/public/test/test_url_loader_client.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_LOADER_TEST_URL_LOADER_CLIENT_H_
-#define CONTENT_BROWSER_LOADER_TEST_URL_LOADER_CLIENT_H_
+#ifndef CONTENT_PUBLIC_TEST_TEST_URL_LOADER_CLIENT_H_
+#define CONTENT_PUBLIC_TEST_TEST_URL_LOADER_CLIENT_H_
#include <stdint.h>
#include <vector>
@@ -57,9 +57,7 @@ class TestURLLoaderClient final : public mojom::URLLoaderClient {
const ResourceResponseHead& response_head() const { return response_head_; }
const base::Optional<net::SSLInfo>& ssl_info() const { return ssl_info_; }
const net::RedirectInfo& redirect_info() const { return redirect_info_; }
- const std::string& cached_metadata() const {
- return cached_metadata_;
- }
+ const std::string& cached_metadata() const { return cached_metadata_; }
mojo::DataPipeConsumerHandle response_body() { return response_body_.get(); }
mojo::ScopedDataPipeConsumerHandle response_body_release() {
return std::move(response_body_);
@@ -131,4 +129,4 @@ class TestURLLoaderClient final : public mojom::URLLoaderClient {
} // namespace content
-#endif // CONTENT_BROWSER_LOADER_TEST_URL_LOADER_CLIENT_H_
+#endif // CONTENT_PUBLIC_TEST_TEST_URL_LOADER_CLIENT_H_
« no previous file with comments | « content/public/network/network_service.h ('k') | content/public/test/test_url_loader_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698