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

Unified Diff: chrome/browser/sync/sessions/session_data_type_controller.h

Issue 666733003: Standardize usage of virtual/override/final in chrome/browser/sync/ (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/sync/sessions/session_data_type_controller.h
diff --git a/chrome/browser/sync/sessions/session_data_type_controller.h b/chrome/browser/sync/sessions/session_data_type_controller.h
index b018d4984d6b1aea1f255b73a61ce61efeb8152d..f7d92fa568e49c461de2e0b321697b6e63180483 100644
--- a/chrome/browser/sync/sessions/session_data_type_controller.h
+++ b/chrome/browser/sync/sessions/session_data_type_controller.h
@@ -29,17 +29,17 @@ class SessionDataTypeController : public sync_driver::UIDataTypeController,
sync_driver::LocalDeviceInfoProvider* local_device);
// NotificationObserver interface.
- 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;
// UIDataTypeController interface.
- virtual bool StartModels() override;
- virtual void StopModels() override;
- virtual bool ReadyForStart() const override;
+ bool StartModels() override;
+ void StopModels() override;
+ bool ReadyForStart() const override;
protected:
- virtual ~SessionDataTypeController();
+ ~SessionDataTypeController() override;
private:
bool IsWaiting();

Powered by Google App Engine
This is Rietveld 408576698