| Index: Source/core/html/canvas/OESElementIndexUint.cpp
|
| diff --git a/Source/core/html/canvas/OESElementIndexUint.cpp b/Source/core/html/canvas/OESElementIndexUint.cpp
|
| index 95fac41b58c938e85603d8c6d4f30a46c115193f..168d0fb250279d32525c940357b83216b53fa08e 100644
|
| --- a/Source/core/html/canvas/OESElementIndexUint.cpp
|
| +++ b/Source/core/html/canvas/OESElementIndexUint.cpp
|
| @@ -45,9 +45,9 @@ WebGLExtensionName OESElementIndexUint::name() const
|
| return OESElementIndexUintName;
|
| }
|
|
|
| -PassRefPtr<OESElementIndexUint> OESElementIndexUint::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<OESElementIndexUint> OESElementIndexUint::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new OESElementIndexUint(context));
|
| + return adoptRefWillBeNoop(new OESElementIndexUint(context));
|
| }
|
|
|
| bool OESElementIndexUint::supported(WebGLRenderingContextBase* context)
|
|
|