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

Issue 10381018: ash: First pass of Applist v2. (Closed)

Created:
8 years, 7 months ago by xiyuan
Modified:
8 years, 7 months ago
Reviewers:
sky
CC:
chromium-reviews, msw+watch_chromium.org, alicet1, sadrul, tfarina, ben+watch_chromium.org
Visibility:
Public.

Description

ash: First pass of Applist v2. - Add an "enable-applist-v2" command line switch and an about flag to trigger v2; - Add paging support to AppListModelView; - Add page switcher buttons for v2 UI; - Add AppListBubbleBorder to paint bubble for v2 UI; BUG=125964, 125044 TEST=Issue 125964 is not ready for test yet. For issue 125044, user can now gets overflown apps via keyboard. Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=135729

Patch Set 1 #

Total comments: 8

Patch Set 2 : for comments in #1 #

Total comments: 8

Patch Set 3 : for comments in #2 #

Patch Set 4 : fix linux_chromeos_clang #

Patch Set 5 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+960 lines, -77 lines) Patch
M ash/app_list/app_list.h View 1 2 3 4 1 chunk +3 lines, -0 lines 0 comments Download
M ash/app_list/app_list.cc View 1 2 3 4 7 chunks +19 lines, -13 lines 0 comments Download
A ash/app_list/app_list_bubble_border.h View 1 2 3 1 chunk +53 lines, -0 lines 0 comments Download
A ash/app_list/app_list_bubble_border.cc View 1 chunk +213 lines, -0 lines 0 comments Download
M ash/app_list/app_list_item_view.cc View 3 chunks +15 lines, -9 lines 0 comments Download
M ash/app_list/app_list_model_view.h View 5 chunks +25 lines, -3 lines 0 comments Download
M ash/app_list/app_list_model_view.cc View 4 chunks +88 lines, -17 lines 0 comments Download
M ash/app_list/app_list_view.h View 1 3 chunks +16 lines, -6 lines 0 comments Download
M ash/app_list/app_list_view.cc View 1 2 3 4 12 chunks +144 lines, -23 lines 0 comments Download
A ash/app_list/page_switcher.h View 1 2 1 chunk +49 lines, -0 lines 0 comments Download
A ash/app_list/page_switcher.cc View 1 chunk +158 lines, -0 lines 0 comments Download
A ash/app_list/pagination_model.h View 1 2 1 chunk +49 lines, -0 lines 0 comments Download
A ash/app_list/pagination_model.cc View 1 chunk +50 lines, -0 lines 0 comments Download
A ash/app_list/pagination_model_observer.h View 1 chunk +27 lines, -0 lines 0 comments Download
M ash/ash.gyp View 1 2 3 4 2 chunks +7 lines, -0 lines 0 comments Download
M ash/ash_switches.h View 1 chunk +1 line, -0 lines 0 comments Download
M ash/ash_switches.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M ash/launcher/launcher.h View 1 3 chunks +4 lines, -1 line 0 comments Download
M ash/launcher/launcher.cc View 1 2 3 4 1 chunk +4 lines, -0 lines 0 comments Download
M ash/launcher/launcher_view.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M ash/launcher/launcher_view.cc View 1 2 3 4 1 chunk +10 lines, -0 lines 0 comments Download
M chrome/app/generated_resources.grd View 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/about_flags.cc View 1 chunk +9 lines, -0 lines 0 comments Download
M ui/views/bubble/bubble_border.h View 1 chunk +2 lines, -2 lines 0 comments Download
M ui/views/bubble/bubble_delegate.h View 2 chunks +3 lines, -3 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
xiyuan
8 years, 7 months ago (2012-05-04 22:21:02 UTC) #1
tfarina
http://codereview.chromium.org/10381018/diff/1/ash/app_list/app_list_view.h File ash/app_list/app_list_view.h (right): http://codereview.chromium.org/10381018/diff/1/ash/app_list/app_list_view.h#newcode60 ash/app_list/app_list_view.h:60: // OVerridden from views::BubbleDelegate: nit: Overridden http://codereview.chromium.org/10381018/diff/1/ash/app_list/app_list_view.h#newcode70 ash/app_list/app_list_view.h:70: AppListBubbleBorder* ...
8 years, 7 months ago (2012-05-04 22:39:19 UTC) #2
tfarina
http://codereview.chromium.org/10381018/diff/1/ash/launcher/launcher.h File ash/launcher/launcher.h (right): http://codereview.chromium.org/10381018/diff/1/ash/launcher/launcher.h#newcode12 ash/launcher/launcher.h:12: #include "ash/ash_export.h" nit: sort
8 years, 7 months ago (2012-05-04 22:41:55 UTC) #3
xiyuan
http://codereview.chromium.org/10381018/diff/1/ash/app_list/app_list_view.h File ash/app_list/app_list_view.h (right): http://codereview.chromium.org/10381018/diff/1/ash/app_list/app_list_view.h#newcode60 ash/app_list/app_list_view.h:60: // OVerridden from views::BubbleDelegate: On 2012/05/04 22:39:19, tfarina wrote: ...
8 years, 7 months ago (2012-05-04 23:00:28 UTC) #4
sky
http://codereview.chromium.org/10381018/diff/5001/ash/app_list/app_list_view.cc File ash/app_list/app_list_view.cc (right): http://codereview.chromium.org/10381018/diff/5001/ash/app_list/app_list_view.cc#newcode41 ash/app_list/app_list_view.cc:41: const int kModelViewFooterPadding = 10; nit: this last one ...
8 years, 7 months ago (2012-05-06 22:51:15 UTC) #5
xiyuan
http://codereview.chromium.org/10381018/diff/5001/ash/app_list/app_list_view.cc File ash/app_list/app_list_view.cc (right): http://codereview.chromium.org/10381018/diff/5001/ash/app_list/app_list_view.cc#newcode41 ash/app_list/app_list_view.cc:41: const int kModelViewFooterPadding = 10; On 2012/05/06 22:51:15, sky ...
8 years, 7 months ago (2012-05-07 16:46:10 UTC) #6
sky
LGTM
8 years, 7 months ago (2012-05-07 17:03:27 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/xiyuan@chromium.org/10381018/4002
8 years, 7 months ago (2012-05-07 19:31:23 UTC) #8
commit-bot: I haz the power
Can't apply patch for file ash/app_list/app_list.cc. While running patch -p1 --forward --force; patching file ash/app_list/app_list.cc ...
8 years, 7 months ago (2012-05-07 19:31:42 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/xiyuan@chromium.org/10381018/12002
8 years, 7 months ago (2012-05-07 19:44:38 UTC) #10
commit-bot: I haz the power
8 years, 7 months ago (2012-05-07 21:34:37 UTC) #11
Try job failure for 10381018-12002 (retry) on win_rel for step "update".
It's a second try, previously, step "browser_tests" failed.
http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=win_rel&nu...

Step "update" is always a major failure.
Look at the try server FAQ for more details.

Powered by Google App Engine
This is Rietveld 408576698