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

Unified Diff: chrome/browser/chromeos/file_system_provider/notification_manager.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/file_system_provider/notification_manager.h
diff --git a/chrome/browser/chromeos/file_system_provider/notification_manager.h b/chrome/browser/chromeos/file_system_provider/notification_manager.h
index f25242adcfd32bcb5b885d7dca82ff7a0c65fa01..03cb31c2e1f6191d48c46b28f32cc9076296905b 100644
--- a/chrome/browser/chromeos/file_system_provider/notification_manager.h
+++ b/chrome/browser/chromeos/file_system_provider/notification_manager.h
@@ -41,8 +41,8 @@ class NotificationManager : public NotificationManagerInterface,
// NotificationManagerInterface overrides:
virtual void ShowUnresponsiveNotification(
int id,
- const NotificationCallback& callback) OVERRIDE;
- virtual void HideUnresponsiveNotification(int id) OVERRIDE;
+ const NotificationCallback& callback) override;
+ virtual void HideUnresponsiveNotification(int id) override;
// Invoked when a button on the notification is clicked.
void OnButtonClick(int button_index);
@@ -55,7 +55,7 @@ class NotificationManager : public NotificationManagerInterface,
// extensions::AppIconLoader::Delegate overrides:
virtual void SetAppImage(const std::string& id,
- const gfx::ImageSkia& image) OVERRIDE;
+ const gfx::ImageSkia& image) override;
private:
typedef std::map<int, NotificationCallback> CallbackMap;

Powered by Google App Engine
This is Rietveld 408576698