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

Issue 20656002: Add profile selector menu to app list. (Closed)

Created:
7 years, 5 months ago by calamity
Modified:
7 years, 3 months ago
CC:
chromium-reviews, chrome-apps-syd-reviews_chromium.org, tfarina
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Add profile selector menu to app list. Adding a profile selector in the app list menu because currently the only way to switch the profile is to go into the app list settings which is hard to find. This CL covers both the mac and windows app list. The app list switches the profile in place without respawning the app list. * Added AppListModel::User struct to represent a User in the app list. * Added a vector of Users to AppListModel. * AppListMenu builds it model with respect to AppListModel::Users. * The AppListViewDelegate profile is now switchable via SetProfilePath(). Calling this rebuilds the AppListModel which notifies the view to update. * Removed custom menu items and views from app_list_menu_views.cc and deleted current_user_menu_item_view on mac. * Changed ui assets that indicate the current user of the app list. * Tweaked PaginationModel to handle an app list with 0 apps. * Mac app list now sets a new delegate to switch the app list profile rather than dismissing and reshowing. BUG=254143, 258729, 289872, 290048 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=224330

Patch Set 1 #

Patch Set 2 : #

Total comments: 4

Patch Set 3 : rework #

Total comments: 27

Patch Set 4 : le refactor gigante #

Patch Set 5 : rebuild avatar menu items on profile change #

Patch Set 6 : undo app_list_service_mac changes #

Total comments: 70

Patch Set 7 : rework, in-place model update #

Patch Set 8 : search results update live on profile switch #

Patch Set 9 : small fixups #

Total comments: 16

Patch Set 10 : rework #

Patch Set 11 : fix crash on deleting app list's current profile #

Patch Set 12 : remove SetModel from contents_view and search_box_view #

Patch Set 13 : remove junk from list_model.h #

Total comments: 55

Patch Set 14 : remove non-profile-selector code #

Patch Set 15 : rework #

Total comments: 4

Patch Set 16 : remove avatar_menu_model changes #

Patch Set 17 : rebase #

Patch Set 18 : rebase #

Patch Set 19 : don't use a shared avatar_menu_item_model #

Patch Set 20 : rebase, remove dead code in app_list_menu_views, add ui assets #

Total comments: 50

Patch Set 21 : rework #

Total comments: 1

Patch Set 22 : rework #

Total comments: 16

Patch Set 23 : implement for mac #

Patch Set 24 : rework, fix tests #

Total comments: 33

Patch Set 25 : move assets to old filenames #

Patch Set 26 : rework #

Patch Set 27 : compress pngs #

Total comments: 26

Patch Set 28 : rework #

Patch Set 29 : don't show profile selector on windows 8 ash #

Patch Set 30 : remove binaries to run tryjobs #

Total comments: 4

Patch Set 31 : address comments #

Patch Set 32 : re-add assets #

Patch Set 33 : fix ash/shell/app_list.cc #

Patch Set 34 : remove old app list indicator assets #

Patch Set 35 : rebase #

Patch Set 36 : remove binary changes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+488 lines, -438 lines) Patch
M ash/shell/app_list.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 2 chunks +10 lines, -1 line 0 comments Download
M chrome/browser/ui/app_list/app_list_controller_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 4 chunks +76 lines, -13 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_controller_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_service_mac.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 6 chunks +23 lines, -9 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_view_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 5 chunks +10 lines, -2 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_view_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 6 chunks +89 lines, -45 lines 0 comments Download
M chrome/browser/ui/app_list/apps_model_builder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/ui/app_list/apps_model_builder.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 3 chunks +24 lines, -12 lines 0 comments Download
M chrome/browser/ui/app_list/apps_model_builder_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 10 chunks +1 line, -11 lines 0 comments Download
M chrome/browser/ui/app_list/chrome_signin_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +3 lines, -6 lines 0 comments Download
M chrome/browser/ui/app_list/chrome_signin_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +7 lines, -4 lines 0 comments Download
M chrome/browser/ui/ash/app_list/app_list_controller_ash.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/browser/ui/ash/app_list/app_list_controller_ash.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/ui/views/app_list/app_list_controller_win.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 6 chunks +31 lines, -5 lines 0 comments Download
M ui/app_list/app_list.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +0 lines, -2 lines 0 comments Download
M ui/app_list/app_list_menu.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 3 chunks +8 lines, -1 line 0 comments Download
M ui/app_list/app_list_menu.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 4 chunks +38 lines, -4 lines 0 comments Download
M ui/app_list/app_list_model.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 6 chunks +28 lines, -8 lines 0 comments Download
M ui/app_list/app_list_model.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +7 lines, -9 lines 0 comments Download
M ui/app_list/app_list_model_observer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -2 lines 0 comments Download
M ui/app_list/app_list_view_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +11 lines, -2 lines 0 comments Download
M ui/app_list/cocoa/app_list_view_controller.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 3 chunks +2 lines, -12 lines 0 comments Download
M ui/app_list/cocoa/apps_grid_controller.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +1 line, -1 line 0 comments Download
M ui/app_list/cocoa/apps_search_box_controller.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +2 lines, -2 lines 0 comments Download
M ui/app_list/cocoa/apps_search_box_controller.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 3 chunks +4 lines, -17 lines 0 comments Download
M ui/app_list/cocoa/apps_search_box_controller_unittest.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 6 chunks +65 lines, -37 lines 0 comments Download
D ui/app_list/cocoa/current_user_menu_item_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +0 lines, -21 lines 0 comments Download
D ui/app_list/cocoa/current_user_menu_item_view.mm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +0 lines, -85 lines 0 comments Download
M ui/app_list/pagination_model.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 2 chunks +2 lines, -2 lines 0 comments Download
M ui/app_list/test/app_list_test_view_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +4 lines, -1 line 0 comments Download
M ui/app_list/views/app_list_menu_views.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -112 lines 0 comments Download
M ui/app_list/views/app_list_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 3 chunks +7 lines, -1 line 0 comments Download
M ui/app_list/views/app_list_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 4 chunks +8 lines, -7 lines 0 comments Download
M ui/resources/ui_resources.grd View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +3 lines, -1 line 0 comments Download

Messages

Total messages: 49 (0 generated)
calamity
This is a first attempt at doing a profile switching menu in the app list. ...
7 years, 5 months ago (2013-07-26 04:53:28 UTC) #1
koz (OOO until 15th September)
This design seems fine to me. https://codereview.chromium.org/20656002/diff/2001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/2001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode58 chrome/browser/ui/app_list/app_list_view_delegate.cc:58: avatar_menu_model_( Better to ...
7 years, 5 months ago (2013-07-26 06:30:18 UTC) #2
calamity
https://codereview.chromium.org/20656002/diff/2001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/2001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode58 chrome/browser/ui/app_list/app_list_view_delegate.cc:58: avatar_menu_model_( On 2013/07/26 06:30:18, koz wrote: > Better to ...
7 years, 5 months ago (2013-07-26 09:13:29 UTC) #3
koz (OOO until 15th September)
lgtm with nits https://codereview.chromium.org/20656002/diff/8001/ui/base/models/avatar_menu_item_model.h File ui/base/models/avatar_menu_item_model.h (right): https://codereview.chromium.org/20656002/diff/8001/ui/base/models/avatar_menu_item_model.h#newcode6 ui/base/models/avatar_menu_item_model.h:6: #define UI_BASE_AVATAR_MENU_ITEM_MODEL_H_ should be UI_BASE_MODELS_AVATAR_MENU_ITEM_MODEL_H_ https://codereview.chromium.org/20656002/diff/8001/ui/base/models/avatar_menu_item_model.h#newcode13 ...
7 years, 4 months ago (2013-07-29 00:34:34 UTC) #4
tapted
Can you post a screenshot on the bug? I'm interested to see what it looks ...
7 years, 4 months ago (2013-07-29 01:59:09 UTC) #5
tapted
Once there are some green bots, I'd like to try it out on Mac, too, ...
7 years, 4 months ago (2013-07-29 02:37:06 UTC) #6
calamity
Rework + refactor. The most "interesting" changes are AppListView::SetModel and AppListControllerWin::ShowForProfile. https://codereview.chromium.org/20656002/diff/8001/chrome/browser/profiles/avatar_menu_model.h File chrome/browser/profiles/avatar_menu_model.h (left): ...
7 years, 4 months ago (2013-07-30 08:42:34 UTC) #7
koz (OOO until 15th September)
As discussed, let's see how keeping the model alive in-place looks. https://codereview.chromium.org/20656002/diff/36001/chrome/browser/ui/app_list/app_list_service_impl.h File chrome/browser/ui/app_list/app_list_service_impl.h (right): ...
7 years, 4 months ago (2013-07-31 03:01:42 UTC) #8
tapted
We should think about adding tests too..... https://codereview.chromium.org/20656002/diff/36001/chrome/browser/profiles/avatar_menu_model.cc File chrome/browser/profiles/avatar_menu_model.cc (right): https://codereview.chromium.org/20656002/diff/36001/chrome/browser/profiles/avatar_menu_model.cc#newcode294 chrome/browser/profiles/avatar_menu_model.cc:294: browser_->profile()->GetPath()); The ...
7 years, 4 months ago (2013-07-31 05:43:53 UTC) #9
benwells
drive by. I've only really looked at the interface changes. Please loop xiyuan in on ...
7 years, 4 months ago (2013-07-31 05:47:13 UTC) #10
calamity
Model now changes in-place rather than creating a new one. AppListView::SetModel has been removed and ...
7 years, 4 months ago (2013-08-01 08:35:45 UTC) #11
tapted
An initial batch, will do another pass. https://chromiumcodereview.appspot.com/20656002/diff/123001/chrome/browser/ui/app_list/app_list_controller_delegate.h File chrome/browser/ui/app_list/app_list_controller_delegate.h (right): https://chromiumcodereview.appspot.com/20656002/diff/123001/chrome/browser/ui/app_list/app_list_controller_delegate.h#newcode78 chrome/browser/ui/app_list/app_list_controller_delegate.h:78: virtual void ...
7 years, 4 months ago (2013-08-01 09:25:55 UTC) #12
tapted
It looks like you deleted the patchset with my comments - I didn't think they ...
7 years, 4 months ago (2013-08-01 23:09:01 UTC) #13
koz (OOO until 15th September)
On 2013/08/01 23:09:01, tapted wrote: > It looks like you deleted the patchset with my ...
7 years, 4 months ago (2013-08-02 00:59:08 UTC) #14
tapted
On 2013/08/02 00:59:08, koz wrote: > On 2013/08/01 23:09:01, tapted wrote: > > It looks ...
7 years, 4 months ago (2013-08-02 01:23:43 UTC) #15
koz (OOO until 15th September)
https://chromiumcodereview.appspot.com/20656002/diff/143001/chrome/browser/profiles/profile_info_util.h File chrome/browser/profiles/profile_info_util.h (right): https://chromiumcodereview.appspot.com/20656002/diff/143001/chrome/browser/profiles/profile_info_util.h#newcode52 chrome/browser/profiles/profile_info_util.h:52: std::vector<ui::AvatarMenuItemModel*>& items, Use a pointer here - we only ...
7 years, 4 months ago (2013-08-02 01:51:15 UTC) #16
koz (OOO until 15th September)
On 2013/08/02 01:23:43, tapted wrote: > On 2013/08/02 00:59:08, koz wrote: > > On 2013/08/01 ...
7 years, 4 months ago (2013-08-02 01:53:59 UTC) #17
calamity
Did tapted's comments too, despite deleting the patchset. Oops. -sign in status now in the ...
7 years, 4 months ago (2013-08-02 09:59:53 UTC) #18
koz (OOO until 15th September)
Code's looking good. How about some tests? https://chromiumcodereview.appspot.com/20656002/diff/207001/ui/app_list/pagination_model.cc File ui/app_list/pagination_model.cc (right): https://chromiumcodereview.appspot.com/20656002/diff/207001/ui/app_list/pagination_model.cc#newcode34 ui/app_list/pagination_model.cc:34: if (selected_page_ ...
7 years, 4 months ago (2013-08-05 01:09:11 UTC) #19
tapted
This CL is getting a bit wild -- it is very hard to review. Tests ...
7 years, 4 months ago (2013-08-05 03:01:38 UTC) #20
koz (OOO until 15th September)
Yes, splitting this up would be great. Another potentially isolated change could be moving the ...
7 years, 4 months ago (2013-08-05 03:52:13 UTC) #21
benwells
https://codereview.chromium.org/20656002/diff/207001/ui/app_list/signin_delegate.h File ui/app_list/signin_delegate.h (right): https://codereview.chromium.org/20656002/diff/207001/ui/app_list/signin_delegate.h#newcode37 ui/app_list/signin_delegate.h:37: virtual void SetProfileByPath(const base::FilePath& profile_path) = 0; On 2013/08/05 ...
7 years, 4 months ago (2013-08-06 01:37:28 UTC) #22
koz (OOO until 15th September)
https://codereview.chromium.org/20656002/diff/207001/ui/app_list/signin_delegate.h File ui/app_list/signin_delegate.h (right): https://codereview.chromium.org/20656002/diff/207001/ui/app_list/signin_delegate.h#newcode37 ui/app_list/signin_delegate.h:37: virtual void SetProfileByPath(const base::FilePath& profile_path) = 0; On 2013/08/06 ...
7 years, 4 months ago (2013-08-06 04:51:33 UTC) #23
calamity
+xiyuan This cl has been split into https://codereview.chromium.org/22268009/ , https://codereview.chromium.org/22339004/ , and https://codereview.chromium.org/22354002/ . This ...
7 years, 4 months ago (2013-08-08 04:52:12 UTC) #24
koz (OOO until 15th September)
Another thing you could potentially split out is the AvatarMenuModel stuff. https://codereview.chromium.org/20656002/diff/261001/chrome/browser/ui/app_list/app_list_service_impl.h File chrome/browser/ui/app_list/app_list_service_impl.h (right): ...
7 years, 4 months ago (2013-08-08 06:25:01 UTC) #25
calamity
Split avatar menu model changes into https://codereview.chromium.org/22597004/ . https://codereview.chromium.org/20656002/diff/261001/chrome/browser/ui/app_list/app_list_service_impl.h File chrome/browser/ui/app_list/app_list_service_impl.h (right): https://codereview.chromium.org/20656002/diff/261001/chrome/browser/ui/app_list/app_list_service_impl.h#newcode32 chrome/browser/ui/app_list/app_list_service_impl.h:32: virtual ...
7 years, 4 months ago (2013-08-09 09:10:56 UTC) #26
calamity
Menu model changes have been landed. Rebased, added jstark's ui assets and removed app_list_menu_views.cc custom ...
7 years, 3 months ago (2013-09-09 20:18:02 UTC) #27
koz (OOO until 15th September)
https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode57 chrome/browser/ui/app_list/app_list_view_delegate.cc:57: void PopulateUsers(ProfileInfoCache& profile_info, Use a const ref or a ...
7 years, 3 months ago (2013-09-09 22:58:06 UTC) #28
tapted
Can you put some screenshots on the bug? And... you will need to do something ...
7 years, 3 months ago (2013-09-10 00:29:26 UTC) #29
xiyuan
https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode132 chrome/browser/ui/app_list/app_list_view_delegate.cc:132: StartSearch(); On 2013/09/10 00:29:26, tapted wrote: > This feels ...
7 years, 3 months ago (2013-09-10 01:54:32 UTC) #30
koz (OOO until 15th September)
https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode152 chrome/browser/ui/app_list/app_list_view_delegate.cc:152: app_sync_ui_state_watcher_.reset(new AppSyncUIStateWatcher(profile_, On 2013/09/10 01:54:33, xiyuan wrote: > On ...
7 years, 3 months ago (2013-09-10 15:21:36 UTC) #31
tapted
https://codereview.chromium.org/20656002/diff/380001/ui/app_list/app_list_menu.cc File ui/app_list/app_list_menu.cc (right): https://codereview.chromium.org/20656002/diff/380001/ui/app_list/app_list_menu.cc#newcode28 ui/app_list/app_list_menu.cc:28: if (users_.size() > 1) { While fighting jetlag last ...
7 years, 3 months ago (2013-09-10 21:20:02 UTC) #32
calamity
Mac patch on its way. https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode57 chrome/browser/ui/app_list/app_list_view_delegate.cc:57: void PopulateUsers(ProfileInfoCache& profile_info, On ...
7 years, 3 months ago (2013-09-10 22:50:45 UTC) #33
xiyuan
https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode132 chrome/browser/ui/app_list/app_list_view_delegate.cc:132: StartSearch(); Sounds reasonable. https://codereview.chromium.org/20656002/diff/340001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (left): https://codereview.chromium.org/20656002/diff/340001/chrome/browser/ui/app_list/app_list_view_delegate.cc#oldcode234 chrome/browser/ui/app_list/app_list_view_delegate.cc:234: ...
7 years, 3 months ago (2013-09-11 05:01:48 UTC) #34
tapted
Don't forget to update the CL description at some point ;) Also, tests? :D You'll ...
7 years, 3 months ago (2013-09-11 05:50:25 UTC) #35
calamity
Mac stuff implemented. https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc (right): https://codereview.chromium.org/20656002/diff/360001/chrome/browser/ui/app_list/app_list_view_delegate.cc#newcode124 chrome/browser/ui/app_list/app_list_view_delegate.cc:124: signin_delegate_->SetProfile(profile_); On 2013/09/11 05:50:26, tapted wrote: ...
7 years, 3 months ago (2013-09-13 18:02:34 UTC) #36
tapted
Don't forget: - Ash on Windows 8 shouldn't show profile switcher - src/tools/resources/optimize-png-files.sh -o2 - ...
7 years, 3 months ago (2013-09-13 23:12:16 UTC) #37
calamity
https://codereview.chromium.org/20656002/diff/417001/chrome/browser/ui/app_list/app_list_service_mac.mm File chrome/browser/ui/app_list/app_list_service_mac.mm (right): https://codereview.chromium.org/20656002/diff/417001/chrome/browser/ui/app_list/app_list_service_mac.mm#newcode452 chrome/browser/ui/app_list/app_list_service_mac.mm:452: // The Objective C objects might be released at ...
7 years, 3 months ago (2013-09-16 19:45:26 UTC) #38
tapted
mac is looking pretty good! next: ash-on-win8 ;) don't forget your todo list. You'll also ...
7 years, 3 months ago (2013-09-16 20:46:43 UTC) #39
tapted
https://codereview.chromium.org/20656002/diff/436001/ui/app_list/cocoa/apps_search_box_controller_unittest.mm File ui/app_list/cocoa/apps_search_box_controller_unittest.mm (right): https://codereview.chromium.org/20656002/diff/436001/ui/app_list/cocoa/apps_search_box_controller_unittest.mm#newcode170 ui/app_list/cocoa/apps_search_box_controller_unittest.mm:170: EXPECT_LT(menu_model->GetCommandIdAt(i), AppListMenu::SELECT_PROFILE); On 2013/09/16 20:46:44, tapted wrote: > this ...
7 years, 3 months ago (2013-09-16 21:02:19 UTC) #40
calamity
https://codereview.chromium.org/20656002/diff/436001/chrome/browser/ui/app_list/app_list_controller_browsertest.cc File chrome/browser/ui/app_list/app_list_controller_browsertest.cc (right): https://codereview.chromium.org/20656002/diff/436001/chrome/browser/ui/app_list/app_list_controller_browsertest.cc#newcode46 chrome/browser/ui/app_list/app_list_controller_browsertest.cc:46: profile_manager->CreateProfileAsync( On 2013/09/16 20:46:44, tapted wrote: > Will the ...
7 years, 3 months ago (2013-09-17 00:09:25 UTC) #41
calamity
Fixed windows 8 ash. Removed binaries in order to run try jobs.
7 years, 3 months ago (2013-09-19 04:22:03 UTC) #42
tapted
lgtm with the correct assets+grd after bots have run, and the changes below I think ...
7 years, 3 months ago (2013-09-19 06:03:19 UTC) #43
calamity
+oshima for ash/ and ui/resources/ OWNERS @tapted: added bugs to CL description. https://codereview.chromium.org/20656002/diff/451001/chrome/browser/ui/app_list/app_list_view_delegate.cc File chrome/browser/ui/app_list/app_list_view_delegate.cc ...
7 years, 3 months ago (2013-09-19 08:15:24 UTC) #44
oshima
ash/ ui/resources lgtm
7 years, 3 months ago (2013-09-19 15:29:40 UTC) #45
koz (OOO until 15th September)
lgtm This is awesome, Chris! Thanks for persevering here.
7 years, 3 months ago (2013-09-19 20:48:38 UTC) #46
benwells
lgtm. Great work Chris!
7 years, 3 months ago (2013-09-20 00:24:33 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/calamity@chromium.org/20656002/504001
7 years, 3 months ago (2013-09-20 01:14:57 UTC) #48
commit-bot: I haz the power
7 years, 3 months ago (2013-09-20 08:34:30 UTC) #49
Message was sent while issue was closed.
Change committed as 224330

Powered by Google App Engine
This is Rietveld 408576698