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

Side by Side Diff: ash/app_list/app_list_groups_view.h

Issue 9033007: Rename the aura_shell namespace to ash (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_APP_LIST_APP_LIST_GROUPS_VIEW_H_ 5 #ifndef ASH_APP_LIST_APP_LIST_GROUPS_VIEW_H_
6 #define ASH_APP_LIST_APP_LIST_GROUPS_VIEW_H_ 6 #define ASH_APP_LIST_APP_LIST_GROUPS_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "ash/ash_export.h" 12 #include "ash/ash_export.h"
13 #include "ui/base/models/list_model_observer.h" 13 #include "ui/base/models/list_model_observer.h"
14 #include "ui/views/controls/button/button.h" 14 #include "ui/views/controls/button/button.h"
15 #include "ui/views/view.h" 15 #include "ui/views/view.h"
16 16
17 namespace views { 17 namespace views {
18 class BoundsAnimator; 18 class BoundsAnimator;
19 } 19 }
20 20
21 namespace aura_shell { 21 namespace ash {
22 22
23 class AppListItemGroupView; 23 class AppListItemGroupView;
24 class AppListItemViewListener; 24 class AppListItemViewListener;
25 class AppListModel; 25 class AppListModel;
26 26
27 // AppListGroupsView displays the UI for an AppListModel. If there are more than 27 // AppListGroupsView displays the UI for an AppListModel. If there are more than
28 // one group in the model , a button strip is displayed to allow user to switch 28 // one group in the model , a button strip is displayed to allow user to switch
29 // between pages. 29 // between pages.
30 class ASH_EXPORT AppListGroupsView : public views::View, 30 class ASH_EXPORT AppListGroupsView : public views::View,
31 public views::ButtonListener, 31 public views::ButtonListener,
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 std::vector<AppListItemGroupView*> pages_; 73 std::vector<AppListItemGroupView*> pages_;
74 views::View* page_buttons_; 74 views::View* page_buttons_;
75 int current_page_; 75 int current_page_;
76 76
77 scoped_ptr<views::BoundsAnimator> animator_; 77 scoped_ptr<views::BoundsAnimator> animator_;
78 78
79 DISALLOW_COPY_AND_ASSIGN(AppListGroupsView); 79 DISALLOW_COPY_AND_ASSIGN(AppListGroupsView);
80 }; 80 };
81 81
82 } // namespace aura_shell 82 } // namespace ash
83 83
84 #endif // ASH_APP_LIST_APP_LIST_GROUPS_VIEW_H_ 84 #endif // ASH_APP_LIST_APP_LIST_GROUPS_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698