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 #include "ash/system/screen_security/screen_tray_item.h" | 5 #include "ash/system/screen_security/screen_tray_item.h" |
6 | 6 |
7 #include "ash/common/material_design/material_design_controller.h" | 7 #include "ash/material_design/material_design_controller.h" |
8 #include "ash/resources/grit/ash_resources.h" | 8 #include "ash/resources/grit/ash_resources.h" |
9 #include "ash/resources/vector_icons/vector_icons.h" | 9 #include "ash/resources/vector_icons/vector_icons.h" |
10 #include "ash/shelf/wm_shelf_util.h" | 10 #include "ash/shelf/wm_shelf_util.h" |
11 #include "ash/system/tray/fixed_sized_image_view.h" | 11 #include "ash/system/tray/fixed_sized_image_view.h" |
12 #include "ash/system/tray/tray_constants.h" | 12 #include "ash/system/tray/tray_constants.h" |
13 #include "ash/system/tray/tray_popup_item_style.h" | 13 #include "ash/system/tray/tray_popup_item_style.h" |
14 #include "ash/system/tray/tray_popup_utils.h" | 14 #include "ash/system/tray/tray_popup_utils.h" |
15 #include "ui/base/resource/resource_bundle.h" | 15 #include "ui/base/resource/resource_bundle.h" |
16 #include "ui/gfx/paint_vector_icon.h" | 16 #include "ui/gfx/paint_vector_icon.h" |
17 #include "ui/message_center/message_center.h" | 17 #include "ui/message_center/message_center.h" |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 | 186 |
187 void ScreenTrayItem::DestroyTrayView() { | 187 void ScreenTrayItem::DestroyTrayView() { |
188 tray_view_ = nullptr; | 188 tray_view_ = nullptr; |
189 } | 189 } |
190 | 190 |
191 void ScreenTrayItem::DestroyDefaultView() { | 191 void ScreenTrayItem::DestroyDefaultView() { |
192 default_view_ = nullptr; | 192 default_view_ = nullptr; |
193 } | 193 } |
194 | 194 |
195 } // namespace ash | 195 } // namespace ash |
OLD | NEW |