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

Unified Diff: Source/wtf/Int16Array.h

Issue 134663006: Update WTF classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/wtf/Int16Array.h
diff --git a/Source/wtf/Int16Array.h b/Source/wtf/Int16Array.h
index d3289b71ed4b5bdad9aed22b6424e8fd2b520e8c..f0b1dfccf1ae841ce659596cfd0c279c873baf2e 100644
--- a/Source/wtf/Int16Array.h
+++ b/Source/wtf/Int16Array.h
@@ -32,7 +32,7 @@ namespace WTF {
class ArrayBuffer;
-class Int16Array : public IntegralTypedArrayBase<short> {
+class Int16Array FINAL : public IntegralTypedArrayBase<short> {
public:
static inline PassRefPtr<Int16Array> create(unsigned length);
static inline PassRefPtr<Int16Array> create(const short* array, unsigned length);
@@ -48,7 +48,7 @@ public:
inline PassRefPtr<Int16Array> subarray(int start) const;
inline PassRefPtr<Int16Array> subarray(int start, int end) const;
- virtual ViewType getType() const
+ virtual ViewType getType() const OVERRIDE
{
return TypeInt16;
}
« no previous file with comments | « Source/wtf/Functional.h ('k') | Source/wtf/Int32Array.h » ('j') | Source/wtf/TypedArrayBase.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698