| Index: chrome/browser/sync/sessions/notification_service_sessions_router.h
|
| diff --git a/chrome/browser/sync/sessions/notification_service_sessions_router.h b/chrome/browser/sync/sessions/notification_service_sessions_router.h
|
| index 76a020c740749e6b701ba448721cb2b9537c82e0..f1249f19c2b5af626dc32a9e457d7ecb40f55aec 100644
|
| --- a/chrome/browser/sync/sessions/notification_service_sessions_router.h
|
| +++ b/chrome/browser/sync/sessions/notification_service_sessions_router.h
|
| @@ -32,17 +32,17 @@ class NotificationServiceSessionsRouter
|
| NotificationServiceSessionsRouter(
|
| Profile* profile,
|
| const syncer::SyncableService::StartSyncFlare& flare);
|
| - virtual ~NotificationServiceSessionsRouter();
|
| + ~NotificationServiceSessionsRouter() override;
|
|
|
| // content::NotificationObserver implementation.
|
| // BrowserSessionProvider -> sync API model change application.
|
| - 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;
|
|
|
| // SessionsSyncManager::LocalEventRouter implementation.
|
| - virtual void StartRoutingTo(LocalSessionEventHandler* handler) override;
|
| - virtual void Stop() override;
|
| + void StartRoutingTo(LocalSessionEventHandler* handler) override;
|
| + void Stop() override;
|
|
|
| private:
|
| // Called when the URL visited in |web_contents| was blocked by the
|
|
|