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

Unified Diff: chrome/browser/local_discovery/privet_notifications.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/local_discovery/privet_notifications.h
diff --git a/chrome/browser/local_discovery/privet_notifications.h b/chrome/browser/local_discovery/privet_notifications.h
index 527db0acf876ad0aa183f06c9169b8534399701d..646eff3fc35ed2db4533857bff47d41fe9667636 100644
--- a/chrome/browser/local_discovery/privet_notifications.h
+++ b/chrome/browser/local_discovery/privet_notifications.h
@@ -99,14 +99,14 @@ class PrivetNotificationService
// PrivetDeviceLister::Delegate implementation:
virtual void DeviceChanged(bool added, const std::string& name,
- const DeviceDescription& description) OVERRIDE;
- virtual void DeviceRemoved(const std::string& name) OVERRIDE;
+ const DeviceDescription& description) override;
+ virtual void DeviceRemoved(const std::string& name) override;
// PrivetNotificationListener::Delegate implementation:
- virtual void PrivetNotify(bool has_multiple, bool added) OVERRIDE;
+ virtual void PrivetNotify(bool has_multiple, bool added) override;
- virtual void PrivetRemoveNotification() OVERRIDE;
- virtual void DeviceCacheFlushed() OVERRIDE;
+ virtual void PrivetRemoveNotification() override;
+ virtual void DeviceCacheFlushed() override;
static bool IsEnabled();
static bool IsForced();
@@ -132,13 +132,13 @@ class PrivetNotificationDelegate : public NotificationDelegate {
explicit PrivetNotificationDelegate(content::BrowserContext* profile);
// NotificationDelegate implementation.
- virtual std::string id() const OVERRIDE;
- virtual content::WebContents* GetWebContents() const OVERRIDE;
- virtual void Display() OVERRIDE;
- virtual void Error() OVERRIDE;
- virtual void Close(bool by_user) OVERRIDE;
- virtual void Click() OVERRIDE;
- virtual void ButtonClick(int button_index) OVERRIDE;
+ virtual std::string id() const override;
+ virtual content::WebContents* GetWebContents() const override;
+ virtual void Display() override;
+ virtual void Error() override;
+ virtual void Close(bool by_user) override;
+ virtual void Click() override;
+ virtual void ButtonClick(int button_index) override;
private:
void OpenTab(const GURL& url);

Powered by Google App Engine
This is Rietveld 408576698