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

Unified Diff: Source/modules/webgl/CHROMIUMSubscribeUniform.cpp

Issue 1234883002: [Oilpan] Migrate classes under module/webgl onto oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 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 | « Source/modules/webgl/CHROMIUMSubscribeUniform.h ('k') | Source/modules/webgl/CHROMIUMSubscribeUniform.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/CHROMIUMSubscribeUniform.cpp
diff --git a/Source/modules/webgl/CHROMIUMSubscribeUniform.cpp b/Source/modules/webgl/CHROMIUMSubscribeUniform.cpp
index ef4e3c65f569044002bee2d92402b1ef8536dd61..5108727c3b2aa3f1233e7072995e3e659ca52646 100644
--- a/Source/modules/webgl/CHROMIUMSubscribeUniform.cpp
+++ b/Source/modules/webgl/CHROMIUMSubscribeUniform.cpp
@@ -25,9 +25,9 @@ WebGLExtensionName CHROMIUMSubscribeUniform::name() const
return CHROMIUMSubscribeUniformName;
}
-PassRefPtrWillBeRawPtr<CHROMIUMSubscribeUniform> CHROMIUMSubscribeUniform::create(WebGLRenderingContextBase* context)
+CHROMIUMSubscribeUniform* CHROMIUMSubscribeUniform::create(WebGLRenderingContextBase* context)
{
- return adoptRefWillBeNoop(new CHROMIUMSubscribeUniform(context));
+ return new CHROMIUMSubscribeUniform(context);
}
bool CHROMIUMSubscribeUniform::supported(WebGLRenderingContextBase* context)
@@ -40,7 +40,7 @@ const char* CHROMIUMSubscribeUniform::extensionName()
return "CHROMIUM_subscribe_uniform";
}
-PassRefPtrWillBeRawPtr<CHROMIUMValuebuffer> CHROMIUMSubscribeUniform::createValuebufferCHROMIUM()
+CHROMIUMValuebuffer* CHROMIUMSubscribeUniform::createValuebufferCHROMIUM()
{
WebGLExtensionScopedContext scoped(this);
if (scoped.isLost())
« no previous file with comments | « Source/modules/webgl/CHROMIUMSubscribeUniform.h ('k') | Source/modules/webgl/CHROMIUMSubscribeUniform.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698