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

Side by Side Diff: chrome/browser/extensions/api/discovery/suggested_links_registry_factory.h

Issue 10391034: Scaffolding for an experimental discovery API letting users inject links in the recommended pane of… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Answered review comments from PatchSet 4. Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_FACTORY _H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_FACTORY _H_
7 #pragma once
8
9 #include "base/memory/singleton.h"
10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
11
12 namespace extensions {
13
14 class SuggestedLinksRegistry;
15
16 // Singleton that associate SuggestedLinksRegistry objects with Profiles.
17 class SuggestedLinksRegistryFactory : public ProfileKeyedServiceFactory {
18 public:
19 static SuggestedLinksRegistry* GetForProfile(Profile* profile);
20
21 static SuggestedLinksRegistryFactory* GetInstance();
22
23 // Overridden from ProfileKeyedBaseFactory:
24 virtual bool ServiceIsCreatedWithProfile() OVERRIDE;
25
26 private:
27 friend struct DefaultSingletonTraits<SuggestedLinksRegistryFactory>;
28
29 SuggestedLinksRegistryFactory();
30 virtual ~SuggestedLinksRegistryFactory();
31
32 // ProfileKeyedServiceFactory:
33 virtual ProfileKeyedService* BuildServiceInstanceFor(
34 Profile* profile) const OVERRIDE;
35 virtual bool ServiceRedirectedInIncognito() OVERRIDE;
36
37 DISALLOW_COPY_AND_ASSIGN(SuggestedLinksRegistryFactory);
38 };
39
40 } // namespace extensions
41
42 #endif // CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_FACT ORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698