Index: Source/core/html/canvas/WebGLContextAttributes.cpp |
diff --git a/Source/core/html/canvas/WebGLContextAttributes.cpp b/Source/core/html/canvas/WebGLContextAttributes.cpp |
index 385720617fd7c74d1b036112ffc5bf97dcd8eb4d..4606022853bf273b40a131739928a9d9235e5e09 100644 |
--- a/Source/core/html/canvas/WebGLContextAttributes.cpp |
+++ b/Source/core/html/canvas/WebGLContextAttributes.cpp |
@@ -32,9 +32,9 @@ |
namespace WebCore { |
-PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create() |
+PassRefPtrWillBeRawPtr<WebGLContextAttributes> WebGLContextAttributes::create() |
{ |
- return adoptRef(new WebGLContextAttributes()); |
+ return adoptRefWillBeNoop(new WebGLContextAttributes()); |
} |
WebGLContextAttributes::WebGLContextAttributes() |
@@ -67,9 +67,9 @@ WebGLContextAttributes::~WebGLContextAttributes() |
{ |
} |
-PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::clone() const |
+PassRefPtrWillBeRawPtr<WebGLContextAttributes> WebGLContextAttributes::clone() const |
{ |
- return adoptRef(new WebGLContextAttributes(*this)); |
+ return adoptRefWillBeNoop(new WebGLContextAttributes(*this)); |
} |
bool WebGLContextAttributes::alpha() const |