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 #include "ash/system/tray/tray_image_item.h" | 5 #include "ash/system/tray/tray_image_item.h" |
6 | 6 |
7 #include "ash/system/tray/tray_item_view.h" | 7 #include "ash/system/tray/tray_item_view.h" |
8 #include "ui/base/resource/resource_bundle.h" | 8 #include "ui/base/resource/resource_bundle.h" |
9 #include "ui/gfx/image/image.h" | 9 #include "ui/gfx/image/image.h" |
10 #include "ui/views/controls/image_view.h" | 10 #include "ui/views/controls/image_view.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 } | 33 } |
34 | 34 |
35 views::View* TrayImageItem::CreateDefaultView(user::LoginStatus status) { | 35 views::View* TrayImageItem::CreateDefaultView(user::LoginStatus status) { |
36 return NULL; | 36 return NULL; |
37 } | 37 } |
38 | 38 |
39 views::View* TrayImageItem::CreateDetailedView(user::LoginStatus status) { | 39 views::View* TrayImageItem::CreateDetailedView(user::LoginStatus status) { |
40 return NULL; | 40 return NULL; |
41 } | 41 } |
42 | 42 |
| 43 void TrayImageItem::UpdateAfterLoginStatusChange(user::LoginStatus status) { |
| 44 } |
| 45 |
43 void TrayImageItem::DestroyTrayView() { | 46 void TrayImageItem::DestroyTrayView() { |
44 tray_view_.reset(); | 47 tray_view_.reset(); |
45 } | 48 } |
46 | 49 |
47 void TrayImageItem::DestroyDefaultView() { | 50 void TrayImageItem::DestroyDefaultView() { |
48 } | 51 } |
49 | 52 |
50 void TrayImageItem::DestroyDetailedView() { | 53 void TrayImageItem::DestroyDetailedView() { |
51 } | 54 } |
52 | 55 |
53 } // namespace internal | 56 } // namespace internal |
54 } // namespace ash | 57 } // namespace ash |
OLD | NEW |