OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_ITEM_H_ | 5 #ifndef ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_ITEM_H_ |
6 #define ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_ITEM_H_ | 6 #define ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_ITEM_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // An image button with a close window icon. | 68 // An image button with a close window icon. |
69 class OverviewCloseButton : public views::ImageButton { | 69 class OverviewCloseButton : public views::ImageButton { |
70 public: | 70 public: |
71 explicit OverviewCloseButton(views::ButtonListener* listener); | 71 explicit OverviewCloseButton(views::ButtonListener* listener); |
72 ~OverviewCloseButton() override; | 72 ~OverviewCloseButton() override; |
73 | 73 |
74 // Resets the listener so that the listener can go out of scope. | 74 // Resets the listener so that the listener can go out of scope. |
75 void ResetListener() { listener_ = nullptr; } | 75 void ResetListener() { listener_ = nullptr; } |
76 | 76 |
77 private: | 77 private: |
78 gfx::ImageSkia icon_image_; | |
79 | |
80 DISALLOW_COPY_AND_ASSIGN(OverviewCloseButton); | 78 DISALLOW_COPY_AND_ASSIGN(OverviewCloseButton); |
81 }; | 79 }; |
82 | 80 |
83 WindowSelectorItem(WmWindow* window, WindowSelector* window_selector); | 81 WindowSelectorItem(WmWindow* window, WindowSelector* window_selector); |
84 ~WindowSelectorItem() override; | 82 ~WindowSelectorItem() override; |
85 | 83 |
86 WmWindow* GetWindow(); | 84 WmWindow* GetWindow(); |
87 | 85 |
88 // Returns the root window on which this item is shown. | 86 // Returns the root window on which this item is shown. |
89 WmWindow* root_window() { return root_window_; } | 87 WmWindow* root_window() { return root_window_; } |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 // Pointer to a view that covers the original header and has rounded top | 249 // Pointer to a view that covers the original header and has rounded top |
252 // corners. This view can have its color and opacity animated. | 250 // corners. This view can have its color and opacity animated. |
253 RoundedContainerView* background_view_; | 251 RoundedContainerView* background_view_; |
254 | 252 |
255 DISALLOW_COPY_AND_ASSIGN(WindowSelectorItem); | 253 DISALLOW_COPY_AND_ASSIGN(WindowSelectorItem); |
256 }; | 254 }; |
257 | 255 |
258 } // namespace ash | 256 } // namespace ash |
259 | 257 |
260 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_ITEM_H_ | 258 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_ITEM_H_ |
OLD | NEW |