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

Unified Diff: Source/core/html/canvas/OESStandardDerivatives.h

Issue 365653002: Oilpan: move 2D Canvas and WebGL objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have Nullable<T>::trace() use TraceIfNeeded<>. Created 6 years, 5 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: Source/core/html/canvas/OESStandardDerivatives.h
diff --git a/Source/core/html/canvas/OESStandardDerivatives.h b/Source/core/html/canvas/OESStandardDerivatives.h
index 30386c38133aff3d2f3ff9af273a065901735cd1..1c8c187a991344b063cecb04194ddeff40f67352 100644
--- a/Source/core/html/canvas/OESStandardDerivatives.h
+++ b/Source/core/html/canvas/OESStandardDerivatives.h
@@ -34,7 +34,7 @@ namespace WebCore {
class OESStandardDerivatives FINAL : public WebGLExtension, public ScriptWrappable {
public:
- static PassRefPtr<OESStandardDerivatives> create(WebGLRenderingContextBase*);
+ static PassRefPtrWillBeRawPtr<OESStandardDerivatives> create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
@@ -42,7 +42,7 @@ public:
virtual WebGLExtensionName name() const OVERRIDE;
private:
- OESStandardDerivatives(WebGLRenderingContextBase*);
+ explicit OESStandardDerivatives(WebGLRenderingContextBase*);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698