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

Unified Diff: Source/wtf/Float32Array.h

Issue 604843002: Replace OVERRIDE and FINAL with their C++11 counterparts in WTF (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Keep the mechanical part only Created 6 years, 3 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
« no previous file with comments | « Source/wtf/FilePrintStream.h ('k') | Source/wtf/Float64Array.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/Float32Array.h
diff --git a/Source/wtf/Float32Array.h b/Source/wtf/Float32Array.h
index f50f878252453c5d9d7616d7e973dc59b75a14ed..74ce044ae0413cdfd70eab2a7bdcf8fb80677649 100644
--- a/Source/wtf/Float32Array.h
+++ b/Source/wtf/Float32Array.h
@@ -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;
}
« no previous file with comments | « Source/wtf/FilePrintStream.h ('k') | Source/wtf/Float64Array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698