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

Unified Diff: third_party/WebKit/Source/modules/webgl/CHROMIUMValuebuffer.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/CHROMIUMValuebuffer.h
diff --git a/third_party/WebKit/Source/modules/webgl/CHROMIUMValuebuffer.h b/third_party/WebKit/Source/modules/webgl/CHROMIUMValuebuffer.h
deleted file mode 100644
index 17c5c5e2d89c61cbc14a6592c4bf9603ed36110e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/webgl/CHROMIUMValuebuffer.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 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 CHROMIUMValuebuffer_h
-#define CHROMIUMValuebuffer_h
-
-#include "modules/webgl/WebGLSharedPlatform3DObject.h"
-
-namespace blink {
-
-class CHROMIUMValuebuffer final : public WebGLSharedPlatform3DObject {
- DEFINE_WRAPPERTYPEINFO();
-public:
- ~CHROMIUMValuebuffer() override;
-
- static CHROMIUMValuebuffer* create(WebGLRenderingContextBase*);
-
- bool hasEverBeenBound() const { return m_hasEverBeenBound; }
-
- void setHasEverBeenBound() { m_hasEverBeenBound = true; }
-
-protected:
- explicit CHROMIUMValuebuffer(WebGLRenderingContextBase*);
-
- void deleteObjectImpl(gpu::gles2::GLES2Interface*) override;
-
-private:
-
- bool m_hasEverBeenBound;
-};
-
-} // namespace blink
-
-#endif // CHROMIUMValuebuffer_h

Powered by Google App Engine
This is Rietveld 408576698