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

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

Issue 1820083005: Remove platform/NotImplemented.*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/WebGL2RenderingContextBase.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
index d56b52a8fa20306c69c24e7c087fd147139a02df..34756932ef61a40c21d25199bc685a8a30244ace 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGL2RenderingContextBase.cpp
@@ -25,7 +25,6 @@
#include "modules/webgl/WebGLUniformLocation.h"
#include "modules/webgl/WebGLVertexArrayObject.h"
#include "platform/CheckedInt.h"
-#include "platform/NotImplemented.h"
#include "public/platform/WebGraphicsContext3D.h"
#include "public/platform/WebGraphicsContext3DProvider.h"
#include "wtf/OwnPtr.h"
@@ -979,7 +978,7 @@ void WebGL2RenderingContextBase::texImage3D(GLenum target, GLint level, GLint in
Vector<uint8_t> tempData;
if (data && (m_unpackFlipY || m_unpackPremultiplyAlpha)) {
// FIXME: WebGLImageConversion needs to be updated to accept image depth.
- notImplemented();
+ NOTIMPLEMENTED();
return;
}
@@ -1052,7 +1051,7 @@ void WebGL2RenderingContextBase::texSubImage3D(GLenum target, GLint level, GLint
bool changeUnpackParameters = false;
if (data && (m_unpackFlipY || m_unpackPremultiplyAlpha)) {
// FIXME: WebGLImageConversion needs to be updated to accept image depth.
- notImplemented();
+ NOTIMPLEMENTED();
changeUnpackParameters = true;
}
if (changeUnpackParameters)

Powered by Google App Engine
This is Rietveld 408576698