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

Unified Diff: Source/web/ColorChooserPopupUIController.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (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/web/AssociatedURLLoader.h ('k') | Source/web/ColorChooserUIController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/ColorChooserPopupUIController.h
diff --git a/Source/web/ColorChooserPopupUIController.h b/Source/web/ColorChooserPopupUIController.h
index e15ac22581ad55b64cec1865fdeb43b8fe9ce024..4e3f10f06a8711782a3ca4bf33defad6f020a579 100644
--- a/Source/web/ColorChooserPopupUIController.h
+++ b/Source/web/ColorChooserPopupUIController.h
@@ -44,25 +44,25 @@ public:
return adoptPtrWillBeNoop(new ColorChooserPopupUIController(frame, chromeClient, client));
}
- virtual ~ColorChooserPopupUIController();
+ ~ColorChooserPopupUIController() override;
// ColorChooserUIController functions:
- virtual void openUI() override;
+ void openUI() override;
// ColorChooser functions
- virtual void endChooser() override;
- virtual AXObject* rootAXObject() override;
+ void endChooser() override;
+ AXObject* rootAXObject() override;
// PagePopupClient functions:
- virtual IntSize contentSize() override;
- virtual void writeDocument(SharedBuffer*) override;
- virtual void selectFontsFromOwnerDocument(Document&) override { }
- virtual Locale& locale() override;
- virtual void setValueAndClosePopup(int, const String&) override;
- virtual void setValue(const String&) override;
- virtual void closePopup() override;
- virtual Element& ownerElement() override;
- virtual void didClosePopup() override;
+ IntSize contentSize() override;
+ void writeDocument(SharedBuffer*) override;
+ void selectFontsFromOwnerDocument(Document&) override { }
+ Locale& locale() override;
+ void setValueAndClosePopup(int, const String&) override;
+ void setValue(const String&) override;
+ void closePopup() override;
+ Element& ownerElement() override;
+ void didClosePopup() override;
private:
ColorChooserPopupUIController(LocalFrame*, ChromeClientImpl*, ColorChooserClient*);
« no previous file with comments | « Source/web/AssociatedURLLoader.h ('k') | Source/web/ColorChooserUIController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698