Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / wtf / Float32Array.h
index f50f878..74ce044 100644 (file)
@@ -32,7 +32,7 @@
 
 namespace WTF {
 
-class Float32Array FINAL : public TypedArrayBase<float> {
+class Float32Array final : public TypedArrayBase<float> {
 public:
     static inline PassRefPtr<Float32Array> create(unsigned length);
     static inline PassRefPtr<Float32Array> create(const float* array, unsigned length);
@@ -54,7 +54,7 @@ public:
     inline PassRefPtr<Float32Array> subarray(int start) const;
     inline PassRefPtr<Float32Array> subarray(int start, int end) const;
 
-    virtual ViewType type() const OVERRIDE
+    virtual ViewType type() const override
     {
         return TypeFloat32;
     }