blob: 79644f65a709d12feee07e07e5ffc23812f464be (
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
|
// Copyright (c) 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_INVALIDATION_INVALIDATION_SERVICE_FACTORY_H_
#define CHROME_BROWSER_INVALIDATION_INVALIDATION_SERVICE_FACTORY_H_
#include "base/basictypes.h"
#include "base/memory/singleton.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
namespace syncer {
class Invalidator;
}
class InvalidationFrontend;
class Profile;
namespace invalidation {
// A ProfileKeyedServiceFactory to construct InvalidationServices. The
// implementation of the InvalidationService may be completely different on
// different platforms; this class should help to hide this complexity. It also
// exposes some factory methods that are useful for setting up tests that rely
// on invalidations.
class InvalidationServiceFactory : public ProfileKeyedServiceFactory {
public:
// TODO(rlarocque): Re-enable this once InvalidationFrontend can extend
// ProfileKeyedService.
// static InvalidationFrontend* GetForProfile(Profile* profile);
static InvalidationServiceFactory* GetInstance();
static ProfileKeyedService* BuildP2PInvalidationServiceFor(Profile* profile);
static ProfileKeyedService* BuildTestServiceInstanceFor(Profile* profile);
private:
friend struct DefaultSingletonTraits<InvalidationServiceFactory>;
InvalidationServiceFactory();
virtual ~InvalidationServiceFactory();
// ProfileKeyedServiceFactory:
virtual ProfileKeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const OVERRIDE;
// TODO(rlarocque): Use this class, not InvalidatorStorage, to register
// for user prefs.
// virtual void RegisterUserPrefs(PrefRegistrySyncable* registry) OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(InvalidationServiceFactory);
};
} // namespace invalidation
#endif // CHROME_BROWSER_INVALIDATION_INVALIDATION_SERVICE_FACTORY_H_
|