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

Unified Diff: chrome/browser/ui/views/frame/contents_layout_manager.h

Issue 686463004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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
Index: chrome/browser/ui/views/frame/contents_layout_manager.h
diff --git a/chrome/browser/ui/views/frame/contents_layout_manager.h b/chrome/browser/ui/views/frame/contents_layout_manager.h
index a2373ef75955b31263cfbf97a3bcb38c09ee7cb6..b9b374919a8dfceb212b215901a6d1d79733f336 100644
--- a/chrome/browser/ui/views/frame/contents_layout_manager.h
+++ b/chrome/browser/ui/views/frame/contents_layout_manager.h
@@ -14,7 +14,7 @@
class ContentsLayoutManager : public views::LayoutManager {
public:
ContentsLayoutManager(views::View* devtools_view, views::View* contents_view);
- virtual ~ContentsLayoutManager();
+ ~ContentsLayoutManager() override;
// Sets the active top margin; both devtools_view and contents_view will be
// pushed down vertically by |margin|.
@@ -25,10 +25,10 @@ class ContentsLayoutManager : public views::LayoutManager {
const DevToolsContentsResizingStrategy& strategy);
// views::LayoutManager overrides:
- virtual void Layout(views::View* host) override;
- virtual gfx::Size GetPreferredSize(const views::View* host) const override;
- virtual void Installed(views::View* host) override;
- virtual void Uninstalled(views::View* host) override;
+ void Layout(views::View* host) override;
+ gfx::Size GetPreferredSize(const views::View* host) const override;
+ void Installed(views::View* host) override;
+ void Uninstalled(views::View* host) override;
private:
views::View* devtools_view_;
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view_unittest.cc ('k') | chrome/browser/ui/views/frame/contents_web_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698