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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp

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/WebGL2RenderingContext.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
index 588a81e6fcaf05273736d8ab8479c5b84a3e2161..a2767a08aa799b7d116b865aeefd0c1cfa430b4e 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContext.cpp
@@ -10,7 +10,6 @@
#include "core/loader/FrameLoader.h"
#include "core/loader/FrameLoaderClient.h"
#include "gpu/command_buffer/client/gles2_interface.h"
-#include "modules/webgl/CHROMIUMSubscribeUniform.h"
#include "modules/webgl/EXTColorBufferFloat.h"
#include "modules/webgl/EXTDisjointTimerQuery.h"
#include "modules/webgl/EXTTextureFilterAnisotropic.h"
@@ -87,7 +86,6 @@ void WebGL2RenderingContext::setCanvasGetContextResult(RenderingContext& result)
void WebGL2RenderingContext::registerContextExtensions()
{
// Register extensions.
- registerExtension<CHROMIUMSubscribeUniform>(m_chromiumSubscribeUniform);
registerExtension<EXTColorBufferFloat>(m_extColorBufferFloat, DraftExtension);
registerExtension<EXTDisjointTimerQuery>(m_extDisjointTimerQuery);
registerExtension<EXTTextureFilterAnisotropic>(m_extTextureFilterAnisotropic);
@@ -104,7 +102,6 @@ void WebGL2RenderingContext::registerContextExtensions()
DEFINE_TRACE(WebGL2RenderingContext)
{
- visitor->trace(m_chromiumSubscribeUniform);
visitor->trace(m_extColorBufferFloat);
visitor->trace(m_extDisjointTimerQuery);
visitor->trace(m_extTextureFilterAnisotropic);

Powered by Google App Engine
This is Rietveld 408576698