summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/wtf/Float64Array.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/wtf/Float64Array.h')
-rw-r--r--chromium/third_party/WebKit/Source/wtf/Float64Array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/wtf/Float64Array.h b/chromium/third_party/WebKit/Source/wtf/Float64Array.h
index 004be378dfd..c3dae189cfc 100644
--- a/chromium/third_party/WebKit/Source/wtf/Float64Array.h
+++ b/chromium/third_party/WebKit/Source/wtf/Float64Array.h
@@ -32,7 +32,7 @@
namespace WTF {
-class Float64Array : public TypedArrayBase<double> {
+class Float64Array FINAL : public TypedArrayBase<double> {
public:
static inline PassRefPtr<Float64Array> create(unsigned length);
static inline PassRefPtr<Float64Array> create(const double* array, unsigned length);
@@ -54,7 +54,7 @@ public:
inline PassRefPtr<Float64Array> subarray(int start) const;
inline PassRefPtr<Float64Array> subarray(int start, int end) const;
- virtual ViewType getType() const
+ virtual ViewType type() const OVERRIDE
{
return TypeFloat64;
}