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

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

Issue 2547813002: Remove WebGLObject maps from WebGLRenderingContextBase and WebGLContextGroup. (Closed)
Patch Set: Fixed WebGLContextObject::validate. Made WebGLExtension non-finalized. Created 4 years 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/WebGLSharedPlatform3DObject.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp b/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
index 8d9e73fecf6e929f26ecc98460925c96dc15833a..83335f87eb13d77b3785d58d952e5f34ae185ffd 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLSharedPlatform3DObject.cpp
@@ -12,8 +12,6 @@ WebGLSharedPlatform3DObject::WebGLSharedPlatform3DObject(
WebGLRenderingContextBase* ctx)
: WebGLSharedObject(ctx), m_object(0) {}
-WebGLSharedPlatform3DObject::~WebGLSharedPlatform3DObject() {}
-
void WebGLSharedPlatform3DObject::setObject(GLuint object) {
// object==0 && deleted==false indicating an uninitialized state;
ASSERT(!m_object && !isDeleted());

Powered by Google App Engine
This is Rietveld 408576698