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

Unified Diff: Source/core/html/canvas/DataView.h

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/core/html/canvas/CanvasStyle.h ('k') | Source/core/html/canvas/EXTBlendMinMax.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/DataView.h
diff --git a/Source/core/html/canvas/DataView.h b/Source/core/html/canvas/DataView.h
index b2482c2f3b258a86dcbb37635c460be4defba5c4..c0f48960f3307f77ba251db12e16bdf2758db2c3 100644
--- a/Source/core/html/canvas/DataView.h
+++ b/Source/core/html/canvas/DataView.h
@@ -34,13 +34,13 @@ namespace blink {
class ExceptionState;
-class DataView FINAL : public ArrayBufferView, public ScriptWrappable {
+class DataView final : public ArrayBufferView, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtr<DataView> create(unsigned length);
static PassRefPtr<DataView> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned byteLength);
- virtual unsigned byteLength() const OVERRIDE { return m_byteLength; }
+ virtual unsigned byteLength() const override { return m_byteLength; }
int8_t getInt8(unsigned byteOffset, ExceptionState&);
uint8_t getUint8(unsigned byteOffset, ExceptionState&);
@@ -72,15 +72,15 @@ public:
void setFloat64(unsigned byteOffset, double value, ExceptionState& ec) { setFloat64(byteOffset, value, false, ec); }
void setFloat64(unsigned byteOffset, double value, bool littleEndian, ExceptionState&);
- virtual ViewType type() const OVERRIDE
+ virtual ViewType type() const override
{
return TypeDataView;
}
- virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) OVERRIDE;
+ virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext, v8::Isolate*) override;
protected:
- virtual void neuter() OVERRIDE;
+ virtual void neuter() override;
private:
DataView(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned byteLength);
« no previous file with comments | « Source/core/html/canvas/CanvasStyle.h ('k') | Source/core/html/canvas/EXTBlendMinMax.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698