Commit b5c983d5 authored by dewittj@chromium.org's avatar dewittj@chromium.org

Reduce the maximum number of list items in notifications.

This changes the limit to 5 max instead of 8 max list items.

BUG=251509

Review URL: https://chromiumcodereview.appspot.com/17198020

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208052 0039d316-1c4b-4281-b951-d872f2087c98
parent 502b59e2
...@@ -59,7 +59,7 @@ gfx::Size GetImageSizeForWidth(int width, const gfx::Size& image_size) { ...@@ -59,7 +59,7 @@ gfx::Size GetImageSizeForWidth(int width, const gfx::Size& image_size) {
return size; return size;
} }
const size_t kNotificationMaximumItems = 8; const size_t kNotificationMaximumItems = 5;
// Timing. // Timing.
const int kAutocloseDefaultDelaySeconds = 8; const int kAutocloseDefaultDelaySeconds = 8;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment