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

Side by Side Diff: chrome/browser/extensions/api/discovery/extension_suggested_links_manager_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: Now using IDL and a ProfileKeyedService. 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_EXTENSION_SUGGESTED_LINKS_MANAGE R_FACTORY_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_EXTENSION_SUGGESTED_LINKS_MANAGE R_FACTORY_H_
7 #pragma once
8
9 #include "base/memory/singleton.h"
10 #include "chrome/browser/profiles/profile_keyed_service_factory.h"
11
12 class ExtensionSuggestedLinksManager;
13
14 // Singleton that associate ExtensionSuggestedLinksManager objects with
15 // Profiles.
16 class ExtensionSuggestedLinksManagerFactory
17 : public ProfileKeyedServiceFactory {
18 public:
19 static ExtensionSuggestedLinksManager* GetForProfile(Profile* profile);
20
21 static ExtensionSuggestedLinksManagerFactory* GetInstance();
22
23 // Overridden from ProfileKeyedBaseFactory:
24 virtual bool ServiceIsCreatedWithProfile() OVERRIDE;
25
26 private:
27 friend struct DefaultSingletonTraits<ExtensionSuggestedLinksManagerFactory>;
28
29 ExtensionSuggestedLinksManagerFactory();
30 virtual ~ExtensionSuggestedLinksManagerFactory();
31
32 // ProfileKeyedServiceFactory:
33 virtual ProfileKeyedService* BuildServiceInstanceFor(
34 Profile* profile) const OVERRIDE;
35 virtual bool ServiceRedirectedInIncognito() OVERRIDE;
36
37 DISALLOW_COPY_AND_ASSIGN(ExtensionSuggestedLinksManagerFactory);
38 };
39
40 #endif // CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_EXTENSION_SUGGESTED_LINKS_MAN AGER_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698