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

Unified Diff: ash/test/child_modal_window.cc

Issue 683623002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « ash/test/child_modal_window.h ('k') | ash/test/shelf_view_test_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/test/child_modal_window.cc
diff --git a/ash/test/child_modal_window.cc b/ash/test/child_modal_window.cc
index 3e8896ad7d34e81db46c74bdfb7375445fc6e261..255f4ccf7051e1ee473743dd52d592317a676eee 100644
--- a/ash/test/child_modal_window.cc
+++ b/ash/test/child_modal_window.cc
@@ -58,18 +58,18 @@ void CreateChildModalParent(gfx::NativeView context) {
class ChildModalWindow : public views::WidgetDelegateView {
public:
ChildModalWindow();
- virtual ~ChildModalWindow();
+ ~ChildModalWindow() override;
private:
// Overridden from View:
- virtual void OnPaint(gfx::Canvas* canvas) override;
- virtual gfx::Size GetPreferredSize() const override;
+ void OnPaint(gfx::Canvas* canvas) override;
+ gfx::Size GetPreferredSize() const override;
// Overridden from WidgetDelegate:
- virtual View* GetContentsView() override;
- virtual base::string16 GetWindowTitle() const override;
- virtual bool CanResize() const override;
- virtual ui::ModalType GetModalType() const override;
+ View* GetContentsView() override;
+ base::string16 GetWindowTitle() const override;
+ bool CanResize() const override;
+ ui::ModalType GetModalType() const override;
DISALLOW_COPY_AND_ASSIGN(ChildModalWindow);
};
« no previous file with comments | « ash/test/child_modal_window.h ('k') | ash/test/shelf_view_test_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698