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

Unified Diff: Source/wtf/Uint32Array.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/Uint32Array.h
diff --git a/Source/wtf/Uint32Array.h b/Source/wtf/Uint32Array.h
index 5f489853b5c1abd7ecd099bb203edabe2f890543..2278479783ee4231ecacdff2f9d141a25015fcf9 100644
--- a/Source/wtf/Uint32Array.h
+++ b/Source/wtf/Uint32Array.h
@@ -33,7 +33,7 @@ namespace WTF {
class ArrayBuffer;
-class Uint32Array : public IntegralTypedArrayBase<unsigned int> {
+class Uint32Array FINAL : public IntegralTypedArrayBase<unsigned> {
public:
static inline PassRefPtr<Uint32Array> create(unsigned length);
static inline PassRefPtr<Uint32Array> create(const unsigned int* array, unsigned length);
@@ -49,7 +49,7 @@ public:
inline PassRefPtr<Uint32Array> subarray(int start) const;
inline PassRefPtr<Uint32Array> subarray(int start, int end) const;
- virtual ViewType getType() const
+ virtual ViewType getType() const OVERRIDE
eseidel 2014/01/11 02:38:01 We normally don't use "get" in accessor names. Ma
{
return TypeUint32;
}

Powered by Google App Engine
This is Rietveld 408576698