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

Issue 12208040: [win] Add a progress bar in the app launcher for app installs. (Closed)

Created:
7 years, 10 months ago by koz (OOO until 15th September)
Modified:
7 years, 10 months ago
Reviewers:
xiyuan, benwells
CC:
chromium-reviews, Aaron Boodman, tfarina, chromium-apps-reviews_chromium.org, chrome-apps-syd-reviews_chromium.org
Visibility:
Public.

Description

[win] Add a progress bar in the app launcher for app installs. BUG=152854 TBR=thakis@chromium.org for chrome/browser/ui/cocoa for adding a stub function Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=181481

Patch Set 1 #

Total comments: 4

Patch Set 2 : respond to comments #

Total comments: 7

Patch Set 3 : rebase #

Patch Set 4 : respond to comments #

Patch Set 5 : rebase #

Patch Set 6 : fix #ifdef'd function definitions #

Patch Set 7 : fix linux compile #

Unified diffs Side-by-side diffs Delta from patch set Stats (+158 lines, -5 lines) Patch
M chrome/browser/extensions/api/webstore_private/webstore_private_api.h View 1 chunk +3 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/webstore_private/webstore_private_api.cc View 1 2 3 4 5 6 2 chunks +12 lines, -2 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_util.h View 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_view_delegate.h View 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/app_list_view_delegate.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/apps_model_builder.h View 1 chunk +4 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/apps_model_builder.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M chrome/browser/ui/app_list/extension_app_item.cc View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/ui/ash/app_list/app_list_controller_ash.cc View 1 2 3 4 5 1 chunk +6 lines, -0 lines 0 comments Download
M chrome/browser/ui/cocoa/app_list/app_list_controller_cocoa.mm View 1 2 3 4 5 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 3 chunks +24 lines, -0 lines 0 comments Download
M ui/app_list/app_list_item_model.h View 1 2 3 2 chunks +8 lines, -0 lines 0 comments Download
M ui/app_list/app_list_item_model.cc View 1 2 3 2 chunks +24 lines, -1 line 0 comments Download
M ui/app_list/app_list_item_model_observer.h View 1 chunk +6 lines, -0 lines 0 comments Download
M ui/app_list/views/app_list_item_view.h View 1 chunk +2 lines, -0 lines 0 comments Download
M ui/app_list/views/app_list_item_view.cc View 1 4 chunks +35 lines, -0 lines 0 comments Download
M ui/app_list/views/app_list_main_view.cc View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
koz (OOO until 15th September)
7 years, 10 months ago (2013-02-06 06:50:51 UTC) #1
xiyuan
LGTM with nits https://codereview.chromium.org/12208040/diff/1/ui/app_list/views/app_list_item_view.cc File ui/app_list/views/app_list_item_view.cc (right): https://codereview.chromium.org/12208040/diff/1/ui/app_list/views/app_list_item_view.cc#newcode178 ui/app_list/views/app_list_item_view.cc:178: apps_grid_view_->EnsureViewVisible(this); Can we just do it ...
7 years, 10 months ago (2013-02-06 07:30:50 UTC) #2
koz (OOO until 15th September)
Thanks for the quick review, Xiyuan! https://codereview.chromium.org/12208040/diff/1/ui/app_list/views/app_list_item_view.cc File ui/app_list/views/app_list_item_view.cc (right): https://codereview.chromium.org/12208040/diff/1/ui/app_list/views/app_list_item_view.cc#newcode178 ui/app_list/views/app_list_item_view.cc:178: apps_grid_view_->EnsureViewVisible(this); On 2013/02/06 ...
7 years, 10 months ago (2013-02-06 07:40:55 UTC) #3
tfarina
https://codereview.chromium.org/12208040/diff/1016/ui/app_list/app_list_item_model.cc File ui/app_list/app_list_item_model.cc (right): https://codereview.chromium.org/12208040/diff/1016/ui/app_list/app_list_item_model.cc#newcode47 ui/app_list/app_list_item_model.cc:47: is_installing_ = is_installing; add a blank line above as ...
7 years, 10 months ago (2013-02-06 15:37:33 UTC) #4
xiyuan
https://codereview.chromium.org/12208040/diff/1016/ui/app_list/app_list_item_model.h File ui/app_list/app_list_item_model.h (right): https://codereview.chromium.org/12208040/diff/1016/ui/app_list/app_list_item_model.h#newcode40 ui/app_list/app_list_item_model.h:40: virtual bool is_installing() const { return is_installing_; } On ...
7 years, 10 months ago (2013-02-06 19:10:37 UTC) #5
benwells
Lgtm with nit https://codereview.chromium.org/12208040/diff/1016/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc File chrome/browser/extensions/api/webstore_private/webstore_private_api.cc (right): https://codereview.chromium.org/12208040/diff/1016/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc#newcode473 chrome/browser/extensions/api/webstore_private/webstore_private_api.cc:473: NOTREACHED(); Not: indenting of line 472
7 years, 10 months ago (2013-02-06 21:54:44 UTC) #6
koz (OOO until 15th September)
https://codereview.chromium.org/12208040/diff/1016/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc File chrome/browser/extensions/api/webstore_private/webstore_private_api.cc (right): https://codereview.chromium.org/12208040/diff/1016/chrome/browser/extensions/api/webstore_private/webstore_private_api.cc#newcode473 chrome/browser/extensions/api/webstore_private/webstore_private_api.cc:473: NOTREACHED(); On 2013/02/06 21:54:44, benwells wrote: > Not: indenting ...
7 years, 10 months ago (2013-02-07 03:13:23 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/12208040/10001
7 years, 10 months ago (2013-02-08 06:49:27 UTC) #8
commit-bot: I haz the power
Presubmit check for 12208040-10001 failed and returned exit status 1. INFO:root:Found 17 file(s). Running presubmit ...
7 years, 10 months ago (2013-02-08 06:49:38 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/12208040/10001
7 years, 10 months ago (2013-02-08 06:55:18 UTC) #10
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 10 months ago (2013-02-08 07:20:54 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/koz@chromium.org/12208040/33
7 years, 10 months ago (2013-02-08 08:54:40 UTC) #12
commit-bot: I haz the power
7 years, 10 months ago (2013-02-08 10:56:10 UTC) #13
Message was sent while issue was closed.
Change committed as 181481

Powered by Google App Engine
This is Rietveld 408576698