OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_TILE_ITEM_VIEW_H_ | 5 #ifndef UI_APP_LIST_VIEWS_TILE_ITEM_VIEW_H_ |
6 #define UI_APP_LIST_VIEWS_TILE_ITEM_VIEW_H_ | 6 #define UI_APP_LIST_VIEWS_TILE_ITEM_VIEW_H_ |
7 | 7 |
8 #include <memory> | |
9 #include <utility> | |
oshima
2017/07/07 23:59:56
do you need utility here?
Jiaquan He
2017/07/08 00:43:55
The lint check tells me to include utility, but ac
oshima
2017/07/08 00:47:15
Will voving to .cc file fix it?
Jiaquan He
2017/07/08 01:24:47
Makes sense. It fixes!
| |
10 | |
8 #include "base/macros.h" | 11 #include "base/macros.h" |
9 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
10 #include "third_party/skia/include/core/SkColor.h" | 13 #include "third_party/skia/include/core/SkColor.h" |
11 #include "ui/app_list/app_list_export.h" | 14 #include "ui/app_list/app_list_export.h" |
12 #include "ui/app_list/views/image_shadow_animator.h" | 15 #include "ui/app_list/views/image_shadow_animator.h" |
13 #include "ui/views/controls/button/button.h" | 16 #include "ui/views/controls/button/button.h" |
14 #include "ui/views/controls/button/custom_button.h" | 17 #include "ui/views/controls/button/custom_button.h" |
15 | 18 |
16 namespace gfx { | 19 namespace gfx { |
17 class ImageSkia; | 20 class ImageSkia; |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 views::Label* title_; // Owned by views hierarchy. | 87 views::Label* title_; // Owned by views hierarchy. |
85 | 88 |
86 bool selected_ = false; | 89 bool selected_ = false; |
87 | 90 |
88 DISALLOW_COPY_AND_ASSIGN(TileItemView); | 91 DISALLOW_COPY_AND_ASSIGN(TileItemView); |
89 }; | 92 }; |
90 | 93 |
91 } // namespace app_list | 94 } // namespace app_list |
92 | 95 |
93 #endif // UI_APP_LIST_VIEWS_TILE_ITEM_VIEW_H_ | 96 #endif // UI_APP_LIST_VIEWS_TILE_ITEM_VIEW_H_ |
OLD | NEW |