Chromium Code Reviews| Index: components/bookmarks/browser/bookmark_model.h |
| diff --git a/components/bookmarks/browser/bookmark_model.h b/components/bookmarks/browser/bookmark_model.h |
| index 27837703d0adc6719ef330fb483cd6afe1d1bcb7..e5504caf9a9c6e62da7dee4e470fa5f13d03eef6 100644 |
| --- a/components/bookmarks/browser/bookmark_model.h |
| +++ b/components/bookmarks/browser/bookmark_model.h |
| @@ -39,6 +39,10 @@ namespace query_parser { |
| enum class MatchingAlgorithm; |
| } |
| +namespace user_prefs { |
| +class PrefRegistrySyncable; |
| +} |
| + |
| namespace bookmarks { |
| class BookmarkCodecTest; |
| @@ -71,6 +75,9 @@ class BookmarkModel : public KeyedService { |
| explicit BookmarkModel(BookmarkClient* client); |
| ~BookmarkModel() override; |
| + // Register preferences. |
| + static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry); |
|
tfarina
2015/07/10 17:30:52
By the way, I would do that separately, since it d
sdefresne
2015/07/16 07:23:33
Make sense, removed from this CL and will do in a
|
| + |
| // KeyedService: |
| void Shutdown() override; |