blob: bc5cacb620d0a29db4cc5102afbd49af3747a68a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGER_H__
#define CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGER_H__
#include <string>
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/memory/scoped_vector.h"
#include "base/scoped_observer.h"
#include "components/sync_driver/device_info_tracker.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_registry_observer.h"
class Profile;
namespace content {
class BrowserContext;
class NotificationDetails;
class NotificationObserver;
class NotificationRegistrar;
} // namespace content
namespace extensions {
class BrowserContextKeyedAPI;
class ExtensionRegistry;
struct EventListenerInfo;
// An object of this class is created for each extension that has registered
// to be notified for device info change. The objects listen for notification
// from sync on device info change. On receiving the notification the
// new list of devices is constructed and passed back to the extension.
// The extension id is part of this object as it is needed to fill in the
// public ids for devices(public ids for a device, is not the same for
// all extensions).
class SignedInDevicesChangeObserver
: public sync_driver::DeviceInfoTracker::Observer {
public:
SignedInDevicesChangeObserver(const std::string& extension_id,
Profile* profile);
virtual ~SignedInDevicesChangeObserver();
void OnDeviceInfoChange() override;
const std::string& extension_id() {
return extension_id_;
}
private:
std::string extension_id_;
Profile* const profile_;
content::NotificationRegistrar registrar_;
};
class SignedInDevicesManager : public BrowserContextKeyedAPI,
public ExtensionRegistryObserver,
public EventRouter::Observer {
public:
// Default constructor used for testing.
SignedInDevicesManager();
explicit SignedInDevicesManager(content::BrowserContext* context);
~SignedInDevicesManager() override;
// BrowserContextKeyedAPI implementation.
static BrowserContextKeyedAPIFactory<SignedInDevicesManager>*
GetFactoryInstance();
// ExtensionRegistryObserver implementation.
void OnExtensionUnloaded(content::BrowserContext* browser_context,
const Extension* extension,
UnloadedExtensionInfo::Reason reason) override;
// EventRouter::Observer:
void OnListenerAdded(const EventListenerInfo& details) override;
void OnListenerRemoved(const EventListenerInfo& details) override;
private:
friend class BrowserContextKeyedAPIFactory<SignedInDevicesManager>;
// BrowserContextKeyedAPI implementation.
static const char* service_name() {
return "SignedInDevicesManager";
}
static const bool kServiceHasOwnInstanceInIncognito = true;
void RemoveChangeObserverForExtension(const std::string& extension_id);
Profile* const profile_;
ScopedVector<SignedInDevicesChangeObserver> change_observers_;
// Listen to extension unloaded notification.
ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver>
extension_registry_observer_;
FRIEND_TEST_ALL_PREFIXES(SignedInDevicesManager, UpdateListener);
DISALLOW_COPY_AND_ASSIGN(SignedInDevicesManager);
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_SIGNED_IN_DEVICES_SIGNED_IN_DEVICES_MANAGER_H__
|