Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_APP_LIST_VIEWS_SEARCH_BOX_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_SEARCH_BOX_VIEW_H_ |
| 6 #define UI_APP_LIST_VIEWS_SEARCH_BOX_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_SEARCH_BOX_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 117 | 117 |
| 118 views::View* content_container_; // Owned by views hierarchy. | 118 views::View* content_container_; // Owned by views hierarchy. |
| 119 SearchBoxImageButton* back_button_; // Owned by views hierarchy. | 119 SearchBoxImageButton* back_button_; // Owned by views hierarchy. |
| 120 SearchBoxImageButton* speech_button_; // Owned by views hierarchy. | 120 SearchBoxImageButton* speech_button_; // Owned by views hierarchy. |
| 121 views::Textfield* search_box_; // Owned by views hierarchy. | 121 views::Textfield* search_box_; // Owned by views hierarchy. |
| 122 views::View* contents_view_; // Owned by views hierarchy. | 122 views::View* contents_view_; // Owned by views hierarchy. |
| 123 app_list::AppListView* app_list_view_; // Owned by views hierarchy. | 123 app_list::AppListView* app_list_view_; // Owned by views hierarchy. |
| 124 | 124 |
| 125 SearchBoxFocus focused_view_; // Which element has TAB'd focus. | 125 SearchBoxFocus focused_view_; // Which element has TAB'd focus. |
| 126 | 126 |
| 127 // The switch that is checked to determine if the fullscreen app list feature | |
|
vadimt
2017/06/13 00:21:59
Again, shorten to "whether XXX"
newcomer
2017/06/13 00:35:00
Done.
| |
| 128 // is enabled. | |
| 129 const bool is_fullscreen_app_list_enabled_; | |
| 130 | |
| 127 DISALLOW_COPY_AND_ASSIGN(SearchBoxView); | 131 DISALLOW_COPY_AND_ASSIGN(SearchBoxView); |
| 128 }; | 132 }; |
| 129 | 133 |
| 130 } // namespace app_list | 134 } // namespace app_list |
| 131 | 135 |
| 132 #endif // UI_APP_LIST_VIEWS_SEARCH_BOX_VIEW_H_ | 136 #endif // UI_APP_LIST_VIEWS_SEARCH_BOX_VIEW_H_ |
| OLD | NEW |