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

Unified Diff: Source/web/PopupContainerTest.cpp

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/PopupContainer.h ('k') | Source/web/PopupListBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PopupContainerTest.cpp
diff --git a/Source/web/PopupContainerTest.cpp b/Source/web/PopupContainerTest.cpp
index 07b9a18c3cb4ea57b81953e1870b0c130ad9134d..d14a9b784a5be1f41a94afcfaefd8ba55a46699b 100644
--- a/Source/web/PopupContainerTest.cpp
+++ b/Source/web/PopupContainerTest.cpp
@@ -32,11 +32,11 @@ using namespace blink;
class MockPopupContent : public PopupContent {
public:
- virtual void setMaxHeight(int max) OVERRIDE { maxHeight = max; }
- virtual int popupContentHeight() const OVERRIDE { return height; }
+ virtual void setMaxHeight(int max) override { maxHeight = max; }
+ virtual int popupContentHeight() const override { return height; }
virtual ~MockPopupContent() { }
- virtual void layout() OVERRIDE
+ virtual void layout() override
{
layoutCount++;
width = std::min(maxWidth, width);
@@ -44,7 +44,7 @@ public:
height -= height % 16;
}
- virtual void setMaxWidthAndLayout(int max) OVERRIDE
+ virtual void setMaxWidthAndLayout(int max) override
{
maxWidth = max;
layout();
« no previous file with comments | « Source/web/PopupContainer.h ('k') | Source/web/PopupListBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698