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

Unified Diff: Source/core/layout/LayoutSearchField.h

Issue 1231363003: Fix virtual/override/final usage in Source/core/layout/. (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/core/layout/LayoutScrollbarTheme.h ('k') | Source/core/layout/LayoutSlider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/LayoutSearchField.h
diff --git a/Source/core/layout/LayoutSearchField.h b/Source/core/layout/LayoutSearchField.h
index 1dc31fdeb41066093ee8f446ea96903c1fec7125..239d100fb9cc97b4c4b002e2f2468ebc8f7d4e7d 100644
--- a/Source/core/layout/LayoutSearchField.h
+++ b/Source/core/layout/LayoutSearchField.h
@@ -32,12 +32,12 @@ class HTMLInputElement;
class LayoutSearchField final : public LayoutTextControlSingleLine {
public:
LayoutSearchField(HTMLInputElement*);
- virtual ~LayoutSearchField();
+ ~LayoutSearchField() override;
private:
- virtual void centerContainerIfNeeded(LayoutBox*) const override;
- virtual LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const override;
- virtual LayoutUnit computeLogicalHeightLimit() const override;
+ void centerContainerIfNeeded(LayoutBox*) const override;
+ LayoutUnit computeControlLogicalHeight(LayoutUnit lineHeight, LayoutUnit nonContentHeight) const override;
+ LayoutUnit computeLogicalHeightLimit() const override;
Element* searchDecorationElement() const;
Element* cancelButtonElement() const;
« no previous file with comments | « Source/core/layout/LayoutScrollbarTheme.h ('k') | Source/core/layout/LayoutSlider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698