1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SYNC_SESSIONS_NOTIFICATION_SERVICE_SESSIONS_ROUTER_H_
6 #define CHROME_BROWSER_SYNC_SESSIONS_NOTIFICATION_SERVICE_SESSIONS_ROUTER_H_
10 #include "base/callback_list.h"
11 #include "base/memory/weak_ptr.h"
12 #include "chrome/browser/sync/sessions/sessions_sync_manager.h"
13 #include "content/public/browser/notification_observer.h"
14 #include "content/public/browser/notification_registrar.h"
23 namespace browser_sync
{
25 // A SessionsSyncManager::LocalEventRouter that drives session sync via
26 // the NotificationService.
27 class NotificationServiceSessionsRouter
28 : public LocalSessionEventRouter
,
29 public content::NotificationObserver
{
31 NotificationServiceSessionsRouter(
33 const syncer::SyncableService::StartSyncFlare
& flare
);
34 ~NotificationServiceSessionsRouter() override
;
36 // content::NotificationObserver implementation.
37 // BrowserSessionProvider -> sync API model change application.
38 void Observe(int type
,
39 const content::NotificationSource
& source
,
40 const content::NotificationDetails
& details
) override
;
42 // SessionsSyncManager::LocalEventRouter implementation.
43 void StartRoutingTo(LocalSessionEventHandler
* handler
) override
;
47 // Called when the URL visited in |web_contents| was blocked by the
48 // SupervisedUserService. We forward this on to our handler_ via the
49 // normal OnLocalTabModified, but pass through here via a WeakPtr
50 // callback from SupervisedUserService and to extract the tab delegate
52 void OnNavigationBlocked(content::WebContents
* web_contents
);
54 // Called when the urls of favicon changed.
55 void OnFaviconChanged(const std::set
<GURL
>& changed_favicons
);
57 LocalSessionEventHandler
* handler_
;
58 content::NotificationRegistrar registrar_
;
59 Profile
* const profile_
;
60 syncer::SyncableService::StartSyncFlare flare_
;
62 scoped_ptr
<base::CallbackList
<void(const std::set
<GURL
>&)>::Subscription
>
63 favicon_changed_subscription_
;
65 base::WeakPtrFactory
<NotificationServiceSessionsRouter
> weak_ptr_factory_
;
67 DISALLOW_COPY_AND_ASSIGN(NotificationServiceSessionsRouter
);
70 } // namespace browser_sync
72 #endif // CHROME_BROWSER_SYNC_SESSIONS_NOTIFICATION_SERVICE_SESSIONS_ROUTER_H_