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

Unified Diff: content/shell/browser/shell_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/shell_url_request_context_getter.h
diff --git a/content/shell/browser/shell_url_request_context_getter.h b/content/shell/browser/shell_url_request_context_getter.h
index 7a83ba05f2de8697fb415f22a936deb42f7572b8..18e4b8d28c29da9641254686ca6a0976c6d8f9e5 100644
--- a/content/shell/browser/shell_url_request_context_getter.h
+++ b/content/shell/browser/shell_url_request_context_getter.h
@@ -53,9 +53,9 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter {
// Used by subclasses to create their own implementation of NetworkDelegate
// and net::ProxyService.
- virtual net::NetworkDelegate* CreateNetworkDelegate();
- virtual net::ProxyConfigService* GetProxyConfigService();
- virtual net::ProxyService* GetProxyService();
+ virtual scoped_ptr<net::NetworkDelegate> CreateNetworkDelegate();
+ virtual scoped_ptr<net::ProxyConfigService> GetProxyConfigService();
+ virtual scoped_ptr<net::ProxyService> GetProxyService();
private:
bool ignore_certificate_errors_;

Powered by Google App Engine
This is Rietveld 408576698