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

Unified Diff: chrome/browser/ntp_snippets/content_suggestions_service_factory.h

Issue 2102023002: Add ContentSuggestionsService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename ContentSuggestionsProvider::Delegate::OnContentChanged to OnSuggestionsChanged Created 4 years, 6 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/ntp_snippets/content_suggestions_service_factory.h
diff --git a/chrome/browser/ntp_snippets/content_suggestions_service_factory.h b/chrome/browser/ntp_snippets/content_suggestions_service_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..e09f157f7e513c0d1b13a7b6df56c3e250cd1f56
--- /dev/null
+++ b/chrome/browser/ntp_snippets/content_suggestions_service_factory.h
@@ -0,0 +1,44 @@
+// Copyright 2016 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_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_FACTORY_H_
+#define CHROME_BROWSER_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_FACTORY_H_
+
+#include <memory>
+
+#include "base/macros.h"
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
+
+class Profile;
+
+namespace base {
+template <typename T>
+struct DefaultSingletonTraits;
tschumann 2016/06/28 11:47:17 never forward declare templates. It makes them pre
Marc Treib 2016/06/28 12:05:19 I generally agree, though this particular thing is
tschumann 2016/06/28 12:32:40 I'm not feeling strongly, but leaning towards not
Philipp Keck 2016/06/28 14:18:57 The existing code is not consistent here (compare
+} // namespace base
+
+namespace ntp_snippets {
+class ContentSuggestionsService;
tschumann 2016/06/28 11:47:17 I don't think this forward declaration is necessar
Marc Treib 2016/06/28 12:05:19 Yes. As per https://www.chromium.org/developers/co
tschumann 2016/06/28 12:32:40 I see. Well it's probably because you compile a lo
Philipp Keck 2016/06/28 14:18:57 Acknowledged.
+} // namespace ntp_snippets
+
+class ContentSuggestionsServiceFactory
+ : public BrowserContextKeyedServiceFactory {
+ public:
+ static ContentSuggestionsServiceFactory* GetInstance();
+ static ntp_snippets::ContentSuggestionsService* GetForProfile(
+ Profile* profile);
+
+ private:
+ friend struct base::DefaultSingletonTraits<ContentSuggestionsServiceFactory>;
tschumann 2016/06/28 11:47:17 nit: friends are usually a pretty deep implementat
Marc Treib 2016/06/28 12:05:19 This is the common style in Chrome AFAIK. There *i
tschumann 2016/06/28 12:32:40 Ok, cool. If there's a common style, we should jus
Philipp Keck 2016/06/28 14:18:57 Acknowledged, see above.
+
+ ContentSuggestionsServiceFactory();
+ ~ContentSuggestionsServiceFactory() override;
+
+ // BrowserStateKeyedServiceFactory implementation.
+ KeyedService* BuildServiceInstanceFor(
+ content::BrowserContext* context) const override;
+
+ DISALLOW_COPY_AND_ASSIGN(ContentSuggestionsServiceFactory);
+};
+
+#endif // CHROME_BROWSER_NTP_SNIPPETS_CONTENT_SUGGESTIONS_SERVICE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698