Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(684)

Unified Diff: third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.h

Issue 1894313002: Removed implementation of CHROMIUM_subscribe_uniform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed a couple more mus/ references Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.h
diff --git a/third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.h b/third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.h
deleted file mode 100644
index 4cd8cbdb48aead2a13e0f6335dc1a0ca521f9394..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROMIUMSubscribeUniform_h
-#define CHROMIUMSubscribeUniform_h
-
-#include "modules/webgl/WebGLExtension.h"
-
-namespace blink {
-
-class CHROMIUMValuebuffer;
-
-class CHROMIUMSubscribeUniform final : public WebGLExtension {
- DEFINE_WRAPPERTYPEINFO();
-public:
- static CHROMIUMSubscribeUniform* create(WebGLRenderingContextBase*);
- static bool supported(WebGLRenderingContextBase*);
- static const char* extensionName();
-
- ~CHROMIUMSubscribeUniform() override;
- WebGLExtensionName name() const override;
-
- CHROMIUMValuebuffer* createValuebufferCHROMIUM();
- void deleteValuebufferCHROMIUM(CHROMIUMValuebuffer*);
- GLboolean isValuebufferCHROMIUM(CHROMIUMValuebuffer*);
- void bindValuebufferCHROMIUM(GLenum target, CHROMIUMValuebuffer*);
-
- void subscribeValueCHROMIUM(GLenum target, GLenum subscription);
- void populateSubscribedValuesCHROMIUM(GLenum target);
- void uniformValuebufferCHROMIUM(const WebGLUniformLocation*, GLenum target, GLenum subscription);
-
-private:
- explicit CHROMIUMSubscribeUniform(WebGLRenderingContextBase*);
-};
-
-} // namespace blink
-
-#endif // CHROMIUMSubscribeUniform_h
« no previous file with comments | « third_party/WebKit/Source/modules/modules.gypi ('k') | third_party/WebKit/Source/modules/webgl/CHROMIUMSubscribeUniform.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698