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

Unified Diff: webkit/glue/plugins/mozilla_extensions.cc

Issue 13701: Use automatic memory management for URLRequestContext's members.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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/url_request/url_request_unittest.cc ('k') | webkit/tools/test_shell/plugin_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/mozilla_extensions.cc
===================================================================
--- webkit/glue/plugins/mozilla_extensions.cc (revision 6881)
+++ webkit/glue/plugins/mozilla_extensions.cc (working copy)
@@ -42,7 +42,8 @@
return result;
}
- scoped_ptr<net::ProxyService> proxy_service(net::ProxyService::Create(NULL));
+ scoped_refptr<net::ProxyService> proxy_service(
+ net::ProxyService::Create(NULL));
if (!proxy_service.get()) {
NOTREACHED();
return result;
« no previous file with comments | « net/url_request/url_request_unittest.cc ('k') | webkit/tools/test_shell/plugin_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698