Chromium Code Reviews| 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_ |