Check USB device path access when prompting users to select a device.
[chromium-blink-merge.git] / chrome / browser / sync / sessions / notification_service_sessions_router.h
blob81a775cbf5a74db6607cfc61131cc74a985146a9
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_
8 #include <set>
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"
16 class GURL;
17 class Profile;
19 namespace content {
20 class WebContents;
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 {
30 public:
31 NotificationServiceSessionsRouter(
32 Profile* profile,
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;
44 void Stop() override;
46 private:
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
51 // from WebContents.
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_