| 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 #ifndef ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/ash_export.h" | 12 #include "ash/ash_export.h" |
| 13 #include "ash/common/login_status.h" | 13 #include "ash/common/login_status.h" |
| 14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/i18n/time_formatting.h" | 16 #include "base/i18n/time_formatting.h" |
| 17 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 18 | 18 |
| 19 class AccountId; | |
| 20 | |
| 21 namespace base { | 19 namespace base { |
| 22 class TimeDelta; | 20 class TimeDelta; |
| 23 class TimeTicks; | 21 class TimeTicks; |
| 24 } | 22 } |
| 25 | 23 |
| 26 namespace device { | 24 namespace device { |
| 27 enum class BluetoothDeviceType; | 25 enum class BluetoothDeviceType; |
| 28 } | 26 } |
| 29 | 27 |
| 30 namespace ash { | 28 namespace ash { |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 // Creates a system tray item for display rotation lock. | 219 // Creates a system tray item for display rotation lock. |
| 222 // TODO(jamescook): Remove this when mus has support for display management | 220 // TODO(jamescook): Remove this when mus has support for display management |
| 223 // and we have a DisplayManager equivalent. See http://crbug.com/548429 | 221 // and we have a DisplayManager equivalent. See http://crbug.com/548429 |
| 224 virtual std::unique_ptr<SystemTrayItem> CreateRotationLockTrayItem( | 222 virtual std::unique_ptr<SystemTrayItem> CreateRotationLockTrayItem( |
| 225 SystemTray* tray); | 223 SystemTray* tray); |
| 226 }; | 224 }; |
| 227 | 225 |
| 228 } // namespace ash | 226 } // namespace ash |
| 229 | 227 |
| 230 #endif // ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ | 228 #endif // ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ |
| OLD | NEW |