OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ | |
6 #define UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ | |
7 | |
8 #include "base/basictypes.h" | |
9 #include "ui/views/controls/button/button.h" | |
10 #include "ui/views/view.h" | |
11 | |
12 namespace content { | |
13 class WebContents; | |
14 } | |
15 | |
16 namespace app_list { | |
17 | |
18 class AppListMainView; | |
19 | |
20 // The start page for the experimental app list. | |
21 class StartPageView : public views::View, public views::ButtonListener { | |
22 public: | |
23 StartPageView(AppListMainView* app_list_main_view, | |
24 content::WebContents* start_page_web_contents); | |
25 virtual ~StartPageView(); | |
26 | |
27 void Reset(); | |
28 | |
29 private: | |
30 // Overridden from views::ButtonListener: | |
31 virtual void ButtonPressed(views::Button* sender, | |
32 const ui::Event& event) OVERRIDE; | |
33 | |
34 AppListMainView* app_list_main_view_; // Owned by views hierarchy. | |
35 views::View* instant_container_; // Owned by views hierarchy. | |
xiyuan
2014/05/08 16:17:48
Make the comments in line 34 and here different an
calamity
2014/05/09 07:09:39
Done.
| |
36 | |
37 DISALLOW_COPY_AND_ASSIGN(StartPageView); | |
38 }; | |
39 | |
40 } // namespace app_list | |
41 | |
42 #endif // UI_APP_LIST_VIEWS_START_PAGE_VIEW_H_ | |
OLD | NEW |