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