diff options
Diffstat (limited to 'Source/WebCore/html/canvas/OESTextureFloat.h')
-rw-r--r-- | Source/WebCore/html/canvas/OESTextureFloat.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/Source/WebCore/html/canvas/OESTextureFloat.h b/Source/WebCore/html/canvas/OESTextureFloat.h index 6c67ea11b..e7c0715dd 100644 --- a/Source/WebCore/html/canvas/OESTextureFloat.h +++ b/Source/WebCore/html/canvas/OESTextureFloat.h @@ -23,25 +23,18 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef OESTextureFloat_h -#define OESTextureFloat_h +#pragma once #include "WebGLExtension.h" -#include <wtf/PassOwnPtr.h> namespace WebCore { -class OESTextureFloat : public WebGLExtension { +class OESTextureFloat final : public WebGLExtension { public: - static OwnPtr<OESTextureFloat> create(WebGLRenderingContext*); - + OESTextureFloat(WebGLRenderingContextBase&); virtual ~OESTextureFloat(); - virtual ExtensionName getName() const override; -private: - OESTextureFloat(WebGLRenderingContext*); + ExtensionName getName() const override; }; } // namespace WebCore - -#endif // OESTextureFloat_h |