Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3476)

Unified Diff: chrome/browser/invalidation/invalidation_service_factory.h

Issue 13991017: Commit InvalidationService implementations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Another attempt to fix Android Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/invalidation/invalidation_service_factory.h
diff --git a/chrome/browser/invalidation/invalidation_service_factory.h b/chrome/browser/invalidation/invalidation_service_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..79644f65a709d12feee07e07e5ffc23812f464be
--- /dev/null
+++ b/chrome/browser/invalidation/invalidation_service_factory.h
@@ -0,0 +1,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_

Powered by Google App Engine
This is Rietveld 408576698