| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "chrome/browser/extensions/api/discovery/suggested_link.h" | 11 #include "chrome/browser/extensions/api/discovery/suggested_link.h" |
| 12 #include "components/browser_context_keyed_service/browser_context_keyed_service
.h" | 12 #include "components/browser_context_keyed_service/browser_context_keyed_service
.h" |
| 13 | 13 |
| 14 namespace extensions { | 14 namespace extensions { |
| 15 | 15 |
| 16 // This class keeps track of links suggested by an extension using the discovery | 16 // This class keeps track of links suggested by an extension using the discovery |
| 17 // API. | 17 // API. |
| 18 class SuggestedLinksRegistry : public ProfileKeyedService { | 18 class SuggestedLinksRegistry : public BrowserContextKeyedService { |
| 19 public: | 19 public: |
| 20 // A list of ExtensionSuggestedLink's. | 20 // A list of ExtensionSuggestedLink's. |
| 21 typedef std::vector<linked_ptr<extensions::SuggestedLink> > SuggestedLinkList; | 21 typedef std::vector<linked_ptr<extensions::SuggestedLink> > SuggestedLinkList; |
| 22 | 22 |
| 23 SuggestedLinksRegistry(); | 23 SuggestedLinksRegistry(); |
| 24 | 24 |
| 25 // Adds a suggested link from |extension_id|. Takes ownership of |item| in all | 25 // Adds a suggested link from |extension_id|. Takes ownership of |item| in all |
| 26 // cases. | 26 // cases. |
| 27 void Add(const std::string& extension_id, | 27 void Add(const std::string& extension_id, |
| 28 scoped_ptr<extensions::SuggestedLink> item); | 28 scoped_ptr<extensions::SuggestedLink> item); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 53 // An empty list of suggestions that can be returned for non-existing | 53 // An empty list of suggestions that can be returned for non-existing |
| 54 // extensions. | 54 // extensions. |
| 55 SuggestedLinkList empty_list_; | 55 SuggestedLinkList empty_list_; |
| 56 | 56 |
| 57 DISALLOW_COPY_AND_ASSIGN(SuggestedLinksRegistry); | 57 DISALLOW_COPY_AND_ASSIGN(SuggestedLinksRegistry); |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace extensions | 60 } // namespace extensions |
| 61 | 61 |
| 62 #endif // CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_H_ | 62 #endif // CHROME_BROWSER_EXTENSIONS_API_DISCOVERY_SUGGESTED_LINKS_REGISTRY_H_ |
| OLD | NEW |