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

Unified Diff: Source/wtf/TypedArrayBase.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/Int8Array.h ('k') | Source/wtf/Uint16Array.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/TypedArrayBase.h
diff --git a/Source/wtf/TypedArrayBase.h b/Source/wtf/TypedArrayBase.h
index 6acfc15382eceefe79cb6151d364ea78e453a081..6319f118e1879c2fd90bd94c369f24ff19c282b8 100644
--- a/Source/wtf/TypedArrayBase.h
+++ b/Source/wtf/TypedArrayBase.h
@@ -60,7 +60,7 @@ class TypedArrayBase : public ArrayBufferView {
return m_length;
}
- virtual unsigned byteLength() const OVERRIDE FINAL
+ virtual unsigned byteLength() const override final
{
return m_length * sizeof(T);
}
@@ -137,7 +137,7 @@ protected:
return create<Subclass>(buffer(), offset, length);
}
- virtual void neuter() OVERRIDE FINAL
+ virtual void neuter() override final
{
ArrayBufferView::neuter();
m_length = 0;
« no previous file with comments | « Source/wtf/Int8Array.h ('k') | Source/wtf/Uint16Array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698