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

Unified Diff: Source/wtf/Float64Array.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/Float64Array.h
diff --git a/Source/wtf/Float64Array.h b/Source/wtf/Float64Array.h
index 004be378dfd64fe1887758cea91ae0d2b84a852d..216150e38cf06b91675a0db3dfe626bcbbb94417 100644
--- a/Source/wtf/Float64Array.h
+++ b/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 getType() const OVERRIDE
{
return TypeFloat64;
}
« no previous file with comments | « Source/wtf/Float32Array.h ('k') | Source/wtf/Functional.h » ('j') | Source/wtf/TypedArrayBase.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698