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

Unified Diff: Source/core/dom/DatasetDOMStringMap.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/DOMURLUtils.h ('k') | Source/core/dom/DecodedDataDocumentParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DatasetDOMStringMap.h
diff --git a/Source/core/dom/DatasetDOMStringMap.h b/Source/core/dom/DatasetDOMStringMap.h
index 55d8735e841180757e2ffbc030f4acdb1d76a319..035b313615cda2e951ef74cd7c60377e8c45dacd 100644
--- a/Source/core/dom/DatasetDOMStringMap.h
+++ b/Source/core/dom/DatasetDOMStringMap.h
@@ -42,17 +42,17 @@ public:
}
#if !ENABLE(OILPAN)
- virtual void ref() override;
- virtual void deref() override;
+ void ref() override;
+ void deref() override;
#endif
- virtual void getNames(Vector<String>&) override;
- virtual String item(const String& name) override;
- virtual bool contains(const String& name) override;
- virtual void setItem(const String& name, const String& value, ExceptionState&) override;
- virtual bool deleteItem(const String& name) override;
+ void getNames(Vector<String>&) override;
+ String item(const String& name) override;
+ bool contains(const String& name) override;
+ void setItem(const String& name, const String& value, ExceptionState&) override;
+ bool deleteItem(const String& name) override;
- virtual Element* element() override { return m_element; }
+ Element* element() override { return m_element; }
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/dom/DOMURLUtils.h ('k') | Source/core/dom/DecodedDataDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698