| Index: Source/modules/webgl/WebGLFenceSync.h
|
| diff --git a/Source/modules/webgl/WebGLFenceSync.h b/Source/modules/webgl/WebGLFenceSync.h
|
| index bda747091cc54c2f378d86cdea1e7e0d613e7902..172fc7e5213d73858044dcd5d5c34e324ceaebef 100644
|
| --- a/Source/modules/webgl/WebGLFenceSync.h
|
| +++ b/Source/modules/webgl/WebGLFenceSync.h
|
| @@ -6,6 +6,7 @@
|
| #define WebGLFenceSync_h
|
|
|
| #include "modules/webgl/WebGLSync.h"
|
| +#include "wtf/PassRefPtr.h"
|
|
|
| namespace blink {
|
|
|
| @@ -15,7 +16,7 @@
|
| public:
|
| ~WebGLFenceSync() override;
|
|
|
| - static WebGLSync* create(WebGL2RenderingContextBase*, GLenum condition, GLbitfield flags);
|
| + static PassRefPtrWillBeRawPtr<WebGLSync> create(WebGL2RenderingContextBase*, GLenum condition, GLbitfield flags);
|
|
|
| protected:
|
| WebGLFenceSync(WebGL2RenderingContextBase*, GLenum condition, GLbitfield flags);
|
|
|