| 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_empty.h" | 5 #include "ash/common/system/tray/tray_empty.h" |
| 6 | 6 |
| 7 #include "ui/views/layout/box_layout.h" | |
| 8 #include "ui/views/background.h" | 7 #include "ui/views/background.h" |
| 9 #include "ui/views/border.h" | 8 #include "ui/views/border.h" |
| 9 #include "ui/views/layout/box_layout.h" |
| 10 #include "ui/views/view.h" | 10 #include "ui/views/view.h" |
| 11 | 11 |
| 12 namespace { | 12 namespace { |
| 13 | 13 |
| 14 class EmptyBackground : public views::Background { | 14 class EmptyBackground : public views::Background { |
| 15 public: | 15 public: |
| 16 EmptyBackground() {} | 16 EmptyBackground() {} |
| 17 ~EmptyBackground() override {} | 17 ~EmptyBackground() override {} |
| 18 | 18 |
| 19 private: | 19 private: |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 void TrayEmpty::DestroyTrayView() {} | 57 void TrayEmpty::DestroyTrayView() {} |
| 58 | 58 |
| 59 void TrayEmpty::DestroyDefaultView() {} | 59 void TrayEmpty::DestroyDefaultView() {} |
| 60 | 60 |
| 61 void TrayEmpty::DestroyDetailedView() {} | 61 void TrayEmpty::DestroyDetailedView() {} |
| 62 | 62 |
| 63 void TrayEmpty::UpdateAfterLoginStatusChange(LoginStatus status) {} | 63 void TrayEmpty::UpdateAfterLoginStatusChange(LoginStatus status) {} |
| 64 | 64 |
| 65 } // namespace ash | 65 } // namespace ash |
| OLD | NEW |