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

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

Issue 2614663008: Migrate WTF::Vector::append() to ::push_back() [part 13 of N] (Closed)
Patch Set: Created 3 years, 11 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 d6de7b3aa4e3facc02970ff4cb543a58f3b9ebc2..8227e12e4839a0b9a4091b46e75ea425d96f16ee 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
@@ -885,7 +885,7 @@ class MODULES_EXPORT WebGLRenderingContextBase : public CanvasRenderingContext,
void registerExtension(Member<T>& extensionPtr,
ExtensionFlags flags = ApprovedExtension,
const char* const* prefixes = nullptr) {
- m_extensions.append(TraceWrapperMember<ExtensionTracker>(
+ m_extensions.push_back(TraceWrapperMember<ExtensionTracker>(
this, TypedExtensionTracker<T>::create(extensionPtr, flags, prefixes)));
}

Powered by Google App Engine
This is Rietveld 408576698