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

Unified Diff: third_party/WebKit/Source/platform/heap/HeapTerminatedArrayBuilder.h

Issue 1609943003: Make platform/heap to use USING_FAST_MALLOC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/platform/heap/HeapTerminatedArrayBuilder.h
diff --git a/third_party/WebKit/Source/platform/heap/HeapTerminatedArrayBuilder.h b/third_party/WebKit/Source/platform/heap/HeapTerminatedArrayBuilder.h
index ec5077c5a9a8115c5a7c4d3420ef836e298f0bad..192f0095aef16c9933777e59fe3acc28f565b25e 100644
--- a/third_party/WebKit/Source/platform/heap/HeapTerminatedArrayBuilder.h
+++ b/third_party/WebKit/Source/platform/heap/HeapTerminatedArrayBuilder.h
@@ -12,7 +12,7 @@
namespace blink {
template<typename T>
-class HeapTerminatedArrayBuilder : public TerminatedArrayBuilder<T, HeapTerminatedArray> {
+class HeapTerminatedArrayBuilder final : public TerminatedArrayBuilder<T, HeapTerminatedArray> {
public:
explicit HeapTerminatedArrayBuilder(HeapTerminatedArray<T>* array) : TerminatedArrayBuilder<T, HeapTerminatedArray>(array) { }
};

Powered by Google App Engine
This is Rietveld 408576698