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

Unified Diff: chrome/browser/history/top_sites.cc

Issue 7529051: ntp: use web store as default mv tile instead of themes gallery (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated thumbnail Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/top_sites.cc
diff --git a/chrome/browser/history/top_sites.cc b/chrome/browser/history/top_sites.cc
index 168692ccc59e975936332dd763f82681b6c6da63..1c1746acb343d225a0c01f4019df3c4a3bef238a 100644
--- a/chrome/browser/history/top_sites.cc
+++ b/chrome/browser/history/top_sites.cc
@@ -55,7 +55,7 @@ static const int64 kMaxUpdateIntervalMinutes = 60;
// IDs of the sites we force into top sites.
static const int kPrepopulatePageIDs[] =
- { IDS_CHROME_WELCOME_URL, IDS_THEMES_GALLERY_URL };
+ { IDS_CHROME_WELCOME_URL, IDS_WEBSTORE_URL };
// Favicons of the sites we force into top sites.
static const char kPrepopulateFaviconURLs[][100] =
@@ -68,7 +68,7 @@ static const char kNewPrepopulateFaviconURLs[][100] =
static const int kPrepopulateTitleIDs[] =
{ IDS_NEW_TAB_CHROME_WELCOME_PAGE_TITLE,
- IDS_NEW_TAB_THEMES_GALLERY_PAGE_TITLE };
+ IDS_NEW_TAB_WEBSTORE_PAGE_TITLE };
namespace {
@@ -84,7 +84,7 @@ class LoadThumbnailsFromHistoryTask : public HistoryDBTask {
result_count_(result_count) {
// l10n_util isn't thread safe, so cache for use on the db thread.
ignore_urls_.insert(l10n_util::GetStringUTF8(IDS_CHROME_WELCOME_URL));
- ignore_urls_.insert(l10n_util::GetStringUTF8(IDS_THEMES_GALLERY_URL));
+ ignore_urls_.insert(l10n_util::GetStringUTF8(IDS_WEBSTORE_URL));
}
virtual bool RunOnDBThread(history::HistoryBackend* backend,
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/ntp4/tile_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698