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

Unified Diff: Source/core/html/shadow/DetailsMarkerControl.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
Index: Source/core/html/shadow/DetailsMarkerControl.h
diff --git a/Source/core/html/shadow/DetailsMarkerControl.h b/Source/core/html/shadow/DetailsMarkerControl.h
index e68f6d7d3302339aa129b344525484bb254884df..bb0c5fd25ee72a50073efcd39c4735d998a9488f 100644
--- a/Source/core/html/shadow/DetailsMarkerControl.h
+++ b/Source/core/html/shadow/DetailsMarkerControl.h
@@ -38,14 +38,14 @@ namespace blink {
class HTMLSummaryElement;
-class DetailsMarkerControl FINAL : public HTMLDivElement {
+class DetailsMarkerControl final : public HTMLDivElement {
public:
explicit DetailsMarkerControl(Document&);
static PassRefPtrWillBeRawPtr<DetailsMarkerControl> create(Document&);
private:
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
- virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
+ virtual bool rendererIsNeeded(const RenderStyle&) override;
HTMLSummaryElement* summaryElement();
};
« no previous file with comments | « Source/core/html/shadow/DateTimeSymbolicFieldElement.h ('k') | Source/core/html/shadow/MediaControlElementTypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698