summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/wtf/Int16Array.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/wtf/Int16Array.h')
-rw-r--r--chromium/third_party/WebKit/Source/wtf/Int16Array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/wtf/Int16Array.h b/chromium/third_party/WebKit/Source/wtf/Int16Array.h
index d3289b71ed4..a9a9a360dae 100644
--- a/chromium/third_party/WebKit/Source/wtf/Int16Array.h
+++ b/chromium/third_party/WebKit/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 type() const OVERRIDE
{
return TypeInt16;
}