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

Unified Diff: webkit/support/test_webkit_platform_support.cc

Issue 16155009: Update webkit/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/renderer/media/webmediaplayer_params.cc ('k') | webkit/support/test_webmessageportchannel.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webkit_platform_support.cc
diff --git a/webkit/support/test_webkit_platform_support.cc b/webkit/support/test_webkit_platform_support.cc
index 4c2deca1a1c5e91cda550732e33519071ed32f2a..28cee7997e33e38a48f3be20e4ac387319d6be4d 100644
--- a/webkit/support/test_webkit_platform_support.cc
+++ b/webkit/support/test_webkit_platform_support.cc
@@ -356,7 +356,7 @@ WebKit::WebGraphicsContext3DProvider* TestWebKitPlatformSupport::
main_thread_contexts_ =
webkit::gpu::TestContextProviderFactory::GetInstance()->
OffscreenContextProviderForMainThread();
- if (!main_thread_contexts_)
+ if (!main_thread_contexts_.get())
return NULL;
return new webkit::gpu::WebGraphicsContext3DProviderImpl(
main_thread_contexts_);
« no previous file with comments | « webkit/renderer/media/webmediaplayer_params.cc ('k') | webkit/support/test_webmessageportchannel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698