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

Unified Diff: chrome/browser/win/jumplist.cc

Issue 2844463003: Fix the number of JumpList slots assigned to each JumpList category (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/win/jumplist.cc
diff --git a/chrome/browser/win/jumplist.cc b/chrome/browser/win/jumplist.cc
index 1c3059a26331a26f59d65eadbcb7b88f70d0c4d4..669163379424479c9a7a44a60dbd85c37095b145 100644
--- a/chrome/browser/win/jumplist.cc
+++ b/chrome/browser/win/jumplist.cc
@@ -207,19 +207,30 @@ void UpdateJumpList(const wchar_t* app_id,
if (begin_update_timer.Elapsed() >= kTimeOutForJumplistUpdate)
return;
- // We allocate 60% of the given JumpList slots to "most-visited" items
- // and 40% to "recently-closed" items, respectively.
- // Nevertheless, if there are not so many items in |recently_closed_pages|,
- // we give the remaining slots to "most-visited" items.
// The default maximum number of items to display in JumpList is 10.
- // https://msdn.microsoft.com/en-us/library/windows/desktop/dd378398(v=vs.85).aspx
- const int kMostVisited = 60;
- const int kRecentlyClosed = 40;
+ // https://msdn.microsoft.com/library/windows/desktop/dd378398.aspx
+ // The "Most visited" category title always takes 1 of the JumpList slots if
+ // |most_visited_pages| isn't empty.
+ // The "Recently closed" category title will also take 1 if
+ // |recently_closed_pages| isn't empty.
+ // For the remaining slots, we allocate 5/8 (i.e., 5 slots if both categories
+ // present) to "most-visited" items and 3/8 (i.e., 3 slots if both categories
+ // present) to "recently-closed" items, respectively.
+
+ const int kMostVisited = 50;
+ const int kRecentlyClosed = 30;
const int kTotal = kMostVisited + kRecentlyClosed;
+
+ // Adjust the available jumplist slots accordingly.
gab 2017/04/25 18:43:11 // Adjust the available jumplist slots to account
chengx 2017/04/25 19:36:59 Done.
+ size_t user_max_items_adjusted = jumplist_updater.user_max_items();
+ if (!most_visited_pages.empty())
+ user_max_items_adjusted--;
gab 2017/04/25 18:43:11 pre-decrement here and below --user_max_items_adj
chengx 2017/04/25 19:36:59 Done.
+ if (!recently_closed_pages.empty())
+ user_max_items_adjusted--;
+
size_t most_visited_items =
- MulDiv(jumplist_updater.user_max_items(), kMostVisited, kTotal);
- size_t recently_closed_items =
- jumplist_updater.user_max_items() - most_visited_items;
+ MulDiv(user_max_items_adjusted, kMostVisited, kTotal);
+ size_t recently_closed_items = user_max_items_adjusted - most_visited_items;
if (recently_closed_pages.size() < recently_closed_items) {
most_visited_items += recently_closed_items - recently_closed_pages.size();
recently_closed_items = recently_closed_pages.size();
@@ -441,7 +452,7 @@ void JumpList::TabRestoreServiceChanged(sessions::TabRestoreService* service) {
// An empty string. This value is to be updated in OnFaviconDataAvailable().
// This code is copied from
// RecentlyClosedTabsHandler::TabRestoreServiceChanged() to emulate it.
- const int kRecentlyClosedCount = 4;
+ const int kRecentlyClosedCount = 3;
sessions::TabRestoreService* tab_restore_service =
TabRestoreServiceFactory::GetForProfile(profile_);
for (const auto& entry : tab_restore_service->entries()) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698