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

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

Issue 2291723002: Manually rename \<m_[0-9]... fields to help rewrite_to_chrome_style tool. (Closed)
Patch Set: Created 4 years, 4 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/WebGLRenderingContextBase.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
index f9b56d45bb4895fba3faae25d84ce0ceb075a9ad..5103d90473dfc4b5f0f0ef90983f2aac8742f092 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
@@ -1058,9 +1058,9 @@ protected:
// latched into the context's state, or which are implicitly
// linked together (like programs and their attached shaders), are
// not garbage collected before they should be.
- ScopedPersistent<v8::Array> m_2DTextureWrappers;
- ScopedPersistent<v8::Array> m_2DArrayTextureWrappers;
- ScopedPersistent<v8::Array> m_3DTextureWrappers;
+ ScopedPersistent<v8::Array> m_wrappersOf2DTextures;
+ ScopedPersistent<v8::Array> m_wrappersOf2DArrayTextures;
+ ScopedPersistent<v8::Array> m_wrappersOf3DTextures;
ScopedPersistent<v8::Array> m_cubeMapTextureWrappers;
ScopedPersistent<v8::Array> m_extensionWrappers;

Powered by Google App Engine
This is Rietveld 408576698