| Index: Source/modules/webgl/WebGLShader.h
|
| diff --git a/Source/modules/webgl/WebGLShader.h b/Source/modules/webgl/WebGLShader.h
|
| index bf8e36fb957431e5b4315086b6476be30054aa8f..cf7df27558d76c725e189117859015d0605e1887 100644
|
| --- a/Source/modules/webgl/WebGLShader.h
|
| +++ b/Source/modules/webgl/WebGLShader.h
|
| @@ -27,6 +27,7 @@
|
| #define WebGLShader_h
|
|
|
| #include "modules/webgl/WebGLSharedPlatform3DObject.h"
|
| +#include "wtf/PassRefPtr.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
| @@ -36,7 +37,7 @@
|
| public:
|
| ~WebGLShader() override;
|
|
|
| - static WebGLShader* create(WebGLRenderingContextBase*, GLenum);
|
| + static PassRefPtrWillBeRawPtr<WebGLShader> create(WebGLRenderingContextBase*, GLenum);
|
|
|
| GLenum type() const { return m_type; }
|
| const String& source() const { return m_source; }
|
|
|