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

Unified Diff: chrome/browser/ui/views/toolbar/home_button.h

Issue 680053003: 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
Index: chrome/browser/ui/views/toolbar/home_button.h
diff --git a/chrome/browser/ui/views/toolbar/home_button.h b/chrome/browser/ui/views/toolbar/home_button.h
index da7348fe406aad7c1fee2068bbb8c54a56a04abb..05fd0fdbe7c0765187cd473297ea06c47a23fa1f 100644
--- a/chrome/browser/ui/views/toolbar/home_button.h
+++ b/chrome/browser/ui/views/toolbar/home_button.h
@@ -14,19 +14,19 @@ class Browser;
class HomeButton : public ToolbarButton {
public:
HomeButton(views::ButtonListener* listener, Browser* browser);
- virtual ~HomeButton();
+ ~HomeButton() override;
// ToolbarButton:
- virtual bool GetDropFormats(
+ bool GetDropFormats(
int* formats,
std::set<OSExchangeData::CustomFormat>* custom_formats) override;
- virtual bool CanDrop(const OSExchangeData& data) override;
- virtual int OnDragUpdated(const ui::DropTargetEvent& event) override;
- virtual int OnPerformDrop(const ui::DropTargetEvent& event) override;
+ bool CanDrop(const OSExchangeData& data) override;
+ int OnDragUpdated(const ui::DropTargetEvent& event) override;
+ int OnPerformDrop(const ui::DropTargetEvent& event) override;
private:
// ToolbarButton:
- virtual void NotifyClick(const ui::Event& event) override;
+ void NotifyClick(const ui::Event& event) override;
Browser* browser_;
« no previous file with comments | « chrome/browser/ui/views/toolbar/extension_toolbar_menu_view.h ('k') | chrome/browser/ui/views/toolbar/home_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698