| Index: components/ntp_snippets/content_suggestions_provider.h
|
| diff --git a/components/ntp_snippets/content_suggestions_provider.h b/components/ntp_snippets/content_suggestions_provider.h
|
| index 2f343a47dc4bf918334e9eea8d58026f078bf55b..23d403c44dc5012e025e00df10fac45e96e07e5a 100644
|
| --- a/components/ntp_snippets/content_suggestions_provider.h
|
| +++ b/components/ntp_snippets/content_suggestions_provider.h
|
| @@ -123,11 +123,12 @@ class ContentSuggestionsProvider {
|
| // application-wide, because this provider is the only one that provides
|
| // suggestions for that category.
|
| std::string MakeUniqueID(Category category,
|
| - const std::string& within_category_id);
|
| + const std::string& within_category_id) const;
|
|
|
| // Reverse functions for MakeUniqueID()
|
| - Category GetCategoryFromUniqueID(const std::string& unique_id);
|
| - std::string GetWithinCategoryIDFromUniqueID(const std::string& unique_id);
|
| + Category GetCategoryFromUniqueID(const std::string& unique_id) const;
|
| + std::string GetWithinCategoryIDFromUniqueID(
|
| + const std::string& unique_id) const;
|
|
|
| Observer* observer() const { return observer_; }
|
| CategoryFactory* category_factory() const { return category_factory_; }
|
|
|