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

Unified Diff: ui/app_list/views/app_list_item_view.h

Issue 2329633003: Implement progress bar spec (determinate and indeterminate). (Closed)
Patch Set: attempt to unbreak mac and unit test Created 4 years, 3 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
Index: ui/app_list/views/app_list_item_view.h
diff --git a/ui/app_list/views/app_list_item_view.h b/ui/app_list/views/app_list_item_view.h
index 545185e1ae1c9eaf82d5a61a7f72447fe98a1f1b..eb2950e6790ef4714c56e1a6c5184904bf6049e4 100644
--- a/ui/app_list/views/app_list_item_view.h
+++ b/ui/app_list/views/app_list_item_view.h
@@ -24,13 +24,13 @@ namespace views {
class ImageView;
class Label;
class MenuRunner;
+class ProgressBar;
}
namespace app_list {
class AppListItem;
class AppsGridView;
-class ProgressBarView;
class APP_LIST_EXPORT AppListItemView : public views::CustomButton,
public views::ContextMenuController,
@@ -151,7 +151,7 @@ class APP_LIST_EXPORT AppListItemView : public views::CustomButton,
AppsGridView* apps_grid_view_; // Parent view, owns this.
views::ImageView* icon_; // Strongly typed child view.
views::Label* title_; // Strongly typed child view.
- ProgressBarView* progress_bar_; // Strongly typed child view.
+ views::ProgressBar* progress_bar_; // Strongly typed child view.
std::unique_ptr<views::MenuRunner> context_menu_runner_;

Powered by Google App Engine
This is Rietveld 408576698