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

Side by Side Diff: components/ntp_snippets/category_factory.cc

Issue 2214683002: [New CL] Add bookmark provider for content suggestions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bookmarks
Patch Set: Insert a blank line Created 4 years, 4 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
« no previous file with comments | « components/ntp_snippets/category.h ('k') | components/ntp_snippets/features.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "components/ntp_snippets/category_factory.h" 5 #include "components/ntp_snippets/category_factory.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
11 namespace ntp_snippets { 11 namespace ntp_snippets {
12 12
13 CategoryFactory::CategoryFactory() { 13 CategoryFactory::CategoryFactory() {
14 // Add all local categories in a fixed order. 14 // Add all local categories in a fixed order.
15 AddKnownCategory(KnownCategories::OFFLINE_PAGES); 15 AddKnownCategory(KnownCategories::OFFLINE_PAGES);
16 AddKnownCategory(KnownCategories::BOOKMARKS);
16 } 17 }
17 18
18 CategoryFactory::~CategoryFactory() {} 19 CategoryFactory::~CategoryFactory() {}
19 20
20 Category CategoryFactory::FromKnownCategory(KnownCategories known_category) { 21 Category CategoryFactory::FromKnownCategory(KnownCategories known_category) {
21 if (known_category < KnownCategories::LOCAL_CATEGORIES_COUNT) { 22 if (known_category < KnownCategories::LOCAL_CATEGORIES_COUNT) {
22 // Local categories should have been added already. 23 // Local categories should have been added already.
23 DCHECK(CategoryExists(static_cast<int>(known_category))); 24 DCHECK(CategoryExists(static_cast<int>(known_category)));
24 } else { 25 } else {
25 DCHECK_GT(known_category, KnownCategories::REMOTE_CATEGORIES_OFFSET); 26 DCHECK_GT(known_category, KnownCategories::REMOTE_CATEGORIES_OFFSET);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 Category(id)); 68 Category(id));
68 if (it != ordered_categories_.end()) 69 if (it != ordered_categories_.end())
69 return *it; 70 return *it;
70 71
71 Category category(id); 72 Category category(id);
72 ordered_categories_.push_back(category); 73 ordered_categories_.push_back(category);
73 return category; 74 return category;
74 } 75 }
75 76
76 } // namespace ntp_snippets 77 } // namespace ntp_snippets
OLDNEW
« no previous file with comments | « components/ntp_snippets/category.h ('k') | components/ntp_snippets/features.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698