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

Unified Diff: Source/web/PopupMenuChromium.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (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/web/PopupListBox.h ('k') | Source/web/PopupMenuTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PopupMenuChromium.h
diff --git a/Source/web/PopupMenuChromium.h b/Source/web/PopupMenuChromium.h
index 4c00929cc6034a6551789385c2b45cf9119d49aa..d493a3e77f85c4efc9f13c30fbc6a5a36b86bb0c 100644
--- a/Source/web/PopupMenuChromium.h
+++ b/Source/web/PopupMenuChromium.h
@@ -41,15 +41,15 @@ class FrameView;
class PopupContainer;
class PopupMenuClient;
-class PopupMenuChromium FINAL : public PopupMenu {
+class PopupMenuChromium final : public PopupMenu {
public:
PopupMenuChromium(LocalFrame&, PopupMenuClient*);
virtual ~PopupMenuChromium();
- virtual void show(const FloatQuad& controlPosition, const IntSize& controlSize, int index) OVERRIDE;
- virtual void hide() OVERRIDE;
- virtual void updateFromElement() OVERRIDE;
- virtual void disconnectClient() OVERRIDE;
+ virtual void show(const FloatQuad& controlPosition, const IntSize& controlSize, int index) override;
+ virtual void hide() override;
+ virtual void updateFromElement() override;
+ virtual void disconnectClient() override;
private:
PopupMenuClient* m_popupClient;
« no previous file with comments | « Source/web/PopupListBox.h ('k') | Source/web/PopupMenuTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698