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

Unified Diff: content/shell/browser/layout_test/layout_test_url_request_context_getter.h

Issue 1290243007: Shift URLRequestContextStorage over to taking scoped_ptrs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Paul_BuilderGrab
Patch Set: Sync'd to revision p349162. Created 5 years, 3 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: content/shell/browser/layout_test/layout_test_url_request_context_getter.h
diff --git a/content/shell/browser/layout_test/layout_test_url_request_context_getter.h b/content/shell/browser/layout_test/layout_test_url_request_context_getter.h
index 6ddf67746e533167721f0e8bb0ab6f0556005e20..dc64b5dbcab05fdd65a6a3b2f48130ea1b36d2f8 100644
--- a/content/shell/browser/layout_test/layout_test_url_request_context_getter.h
+++ b/content/shell/browser/layout_test/layout_test_url_request_context_getter.h
@@ -43,9 +43,9 @@ class LayoutTestURLRequestContextGetter : public ShellURLRequestContextGetter {
~LayoutTestURLRequestContextGetter() override;
// ShellURLRequestContextGetter implementation.
- net::NetworkDelegate* CreateNetworkDelegate() override;
- net::ProxyConfigService* GetProxyConfigService() override;
- net::ProxyService* GetProxyService() override;
+ scoped_ptr<net::NetworkDelegate> CreateNetworkDelegate() override;
+ scoped_ptr<net::ProxyConfigService> GetProxyConfigService() override;
+ scoped_ptr<net::ProxyService> GetProxyService() override;
private:
DISALLOW_COPY_AND_ASSIGN(LayoutTestURLRequestContextGetter);

Powered by Google App Engine
This is Rietveld 408576698