OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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. | |
4 // | |
5 // Interface to the sync notifier, which is an object that receives | |
6 // notifications when updates are available for a set of sync types. | |
7 // All the observers are notified when such an event happens. | |
8 | |
9 #ifndef CHROME_BROWSER_SYNC_NOTIFIER_SYNC_NOTIFIER_H_ | |
10 #define CHROME_BROWSER_SYNC_NOTIFIER_SYNC_NOTIFIER_H_ | |
11 | |
12 #include <string> | |
13 | |
14 #include "chrome/browser/sync/syncable/model_type.h" | |
15 | |
16 namespace sync_notifier { | |
17 class SyncNotifierObserver; | |
18 | |
19 class SyncNotifier { | |
20 public: | |
21 SyncNotifier() {} | |
22 virtual ~SyncNotifier() {} | |
23 | |
24 virtual void AddObserver(SyncNotifierObserver* observer) = 0; | |
25 virtual void RemoveObserver(SyncNotifierObserver* observer) = 0; | |
26 | |
27 virtual void UpdateCredentials( | |
akalin
2011/03/11 04:17:14
Add a comment saying that notifications won't be s
Agrawal
2011/03/11 21:42:20
Done.
| |
28 const std::string& email, const std::string& token) = 0; | |
29 | |
30 virtual void SetState(const std::string& state) = 0; | |
akalin
2011/03/11 04:17:14
Add a comment saying that this must be called befo
Agrawal
2011/03/11 21:42:20
Done.
| |
31 | |
32 virtual void UpdateEnabledTypes(const syncable::ModelTypeSet& types) = 0; | |
33 | |
34 // This is here only to support the old p2p notification implementation, | |
35 // which is still used by sync integration tests. | |
36 // TODO(akalin): Remove this once we move the integration tests off p2p | |
37 // notifications. | |
38 virtual void SendNotification() = 0; | |
39 }; | |
40 } // namespace sync_notifier | |
41 | |
42 #endif // CHROME_BROWSER_SYNC_NOTIFIER_SYNC_NOTIFIER_H_ | |
43 | |
OLD | NEW |