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

Unified Diff: chrome/browser/ui/views/conflicting_module_view_win.h

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/conflicting_module_view_win.h
diff --git a/chrome/browser/ui/views/conflicting_module_view_win.h b/chrome/browser/ui/views/conflicting_module_view_win.h
index 3775092cdccc1472a9d95dbb74836c462a47d7f6..fa4e49691b85a65b551420be69fe3c571a1c7af2 100644
--- a/chrome/browser/ui/views/conflicting_module_view_win.h
+++ b/chrome/browser/ui/views/conflicting_module_view_win.h
@@ -32,7 +32,7 @@ class ConflictingModuleView : public views::BubbleDelegateView,
static void MaybeShow(Browser* browser, views::View* anchor_view);
private:
- virtual ~ConflictingModuleView();
+ ~ConflictingModuleView() override;
// Shows the bubble and updates the counter for how often it has been shown.
void ShowBubble();
@@ -42,22 +42,21 @@ class ConflictingModuleView : public views::BubbleDelegateView,
void DismissBubble();
// views::BubbleDelegateView implementation:
- virtual void Init() override;
+ void Init() override;
// views::ButtonListener implementation.
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) override;
+ void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// views::View implementation.
- virtual void GetAccessibleState(ui::AXViewState* state) override;
- virtual void ViewHierarchyChanged(
+ void GetAccessibleState(ui::AXViewState* state) override;
+ void ViewHierarchyChanged(
const ViewHierarchyChangedDetails& details) override;
// content::NotificationObserver implementation.
- virtual void Observe(
- int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(
+ int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
Browser* browser_;
« no previous file with comments | « chrome/browser/ui/views/color_chooser_win.cc ('k') | chrome/browser/ui/views/desktop_media_picker_views_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698