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

Unified Diff: Source/core/html/forms/FormController.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/forms/FileInputType.h ('k') | Source/core/html/forms/FormController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/FormController.h
diff --git a/Source/core/html/forms/FormController.h b/Source/core/html/forms/FormController.h
index 01bca5ea8073371fb27157e3602099f1d0be65cf..ab081cf46fa409a652e8bc809f71af9d51c1aeb6 100644
--- a/Source/core/html/forms/FormController.h
+++ b/Source/core/html/forms/FormController.h
@@ -73,7 +73,7 @@ inline void FormControlState::append(const String& value)
typedef HashMap<AtomicString, OwnPtr<SavedFormState> > SavedFormStateMap;
-class DocumentState FINAL : public RefCountedWillBeGarbageCollected<DocumentState> {
+class DocumentState final : public RefCountedWillBeGarbageCollected<DocumentState> {
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(DocumentState);
public:
static PassRefPtrWillBeRawPtr<DocumentState> create();
@@ -88,7 +88,7 @@ private:
FormElementListHashSet m_formControls;
};
-class FormController FINAL : public NoBaseWillBeGarbageCollectedFinalized<FormController> {
+class FormController final : public NoBaseWillBeGarbageCollectedFinalized<FormController> {
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
public:
static PassOwnPtrWillBeRawPtr<FormController> create()
« no previous file with comments | « Source/core/html/forms/FileInputType.h ('k') | Source/core/html/forms/FormController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698