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

Unified Diff: Source/core/dom/DOMArrayBufferView.h

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/dom/DOMArrayBuffer.h ('k') | Source/core/dom/DOMDataView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMArrayBufferView.h
diff --git a/Source/core/dom/DOMArrayBufferView.h b/Source/core/dom/DOMArrayBufferView.h
index 846a1f96b0e6cd209ffe12eab1a47a259b1c7cb1..03cc822bdf9e6e5aa1b2d3a4ee1492268ae75f39 100644
--- a/Source/core/dom/DOMArrayBufferView.h
+++ b/Source/core/dom/DOMArrayBufferView.h
@@ -68,12 +68,12 @@ public:
void setNeuterable(bool flag) { return view()->setNeuterable(flag); }
bool isShared() const { return view()->isShared(); }
- virtual v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationContext) override
+ v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationContext) override
{
ASSERT_NOT_REACHED();
return v8::Local<v8::Object>();
}
- virtual v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) override
+ v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper) override
{
ASSERT_NOT_REACHED();
return v8::Local<v8::Object>();
« no previous file with comments | « Source/core/dom/DOMArrayBuffer.h ('k') | Source/core/dom/DOMDataView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698