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

Unified Diff: webkit/support/webkit_support.cc

Issue 4192012: Convert implicit scoped_refptr constructor calls to explicit ones, part 1 (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: fix presubmit Created 10 years, 2 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 | « webkit/glue/webmediaplayer_impl.cc ('k') | webkit/tools/test_shell/simple_resource_loader_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support.cc
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc
index f1aae3deab3e04c2aaaed5053bfefe8674ca9831..e2dbf4cff09cf809ca593cd4d537cb35e2214556 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -289,8 +289,8 @@ WebKit::WebMediaPlayer* CreateMediaPlayer(WebFrame* frame,
appcache_host ? appcache_host->host_id() : appcache::kNoHostId,
0);
- scoped_refptr<webkit_glue::VideoRendererImpl> video_renderer =
- new webkit_glue::VideoRendererImpl(false);
+ scoped_refptr<webkit_glue::VideoRendererImpl> video_renderer(
+ new webkit_glue::VideoRendererImpl(false));
collection.push_back(video_renderer);
return new webkit_glue::WebMediaPlayerImpl(
« no previous file with comments | « webkit/glue/webmediaplayer_impl.cc ('k') | webkit/tools/test_shell/simple_resource_loader_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698