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

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

Issue 633573004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom (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/dom/DOMURL.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 2f4edce67031979004c7e7e9f37ed29429e88412..86f070338a924217cc3995567962776e39fe0f34 100644
--- a/Source/core/dom/DatasetDOMStringMap.h
+++ b/Source/core/dom/DatasetDOMStringMap.h
@@ -34,7 +34,7 @@ namespace blink {
class Element;
class ExceptionState;
-class DatasetDOMStringMap FINAL : public DOMStringMap {
+class DatasetDOMStringMap final : public DOMStringMap {
public:
static PassOwnPtrWillBeRawPtr<DatasetDOMStringMap> create(Element* element)
{
@@ -42,19 +42,19 @@ public:
}
#if !ENABLE(OILPAN)
- virtual void ref() OVERRIDE;
- virtual void deref() OVERRIDE;
+ virtual void ref() override;
+ virtual 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;
+ 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;
- virtual Element* element() OVERRIDE { return m_element; }
+ virtual Element* element() override { return m_element; }
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit DatasetDOMStringMap(Element* element)
« no previous file with comments | « Source/core/dom/DOMURL.h ('k') | Source/core/dom/DecodedDataDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698