| 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 "chrome/browser/chromeos/system/ash_system_tray_delegate.h" | 5 #include "chrome/browser/chromeos/system/ash_system_tray_delegate.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/ash_switches.h" | 12 #include "ash/ash_switches.h" |
| 13 #include "ash/desktop_background/desktop_background_controller.h" | 13 #include "ash/desktop_background/desktop_background_controller.h" |
| 14 #include "ash/shell.h" | 14 #include "ash/shell.h" |
| 15 #include "ash/shell_delegate.h" | 15 #include "ash/shell_delegate.h" |
| 16 #include "ash/shell_window_ids.h" | 16 #include "ash/shell_window_ids.h" |
| 17 #include "ash/system/audio/audio_observer.h" | |
| 18 #include "ash/system/bluetooth/bluetooth_observer.h" | 17 #include "ash/system/bluetooth/bluetooth_observer.h" |
| 19 #include "ash/system/brightness/brightness_observer.h" | 18 #include "ash/system/brightness/brightness_observer.h" |
| 19 #include "ash/system/chromeos/audio/audio_observer.h" |
| 20 #include "ash/system/chromeos/network/network_observer.h" | 20 #include "ash/system/chromeos/network/network_observer.h" |
| 21 #include "ash/system/chromeos/network/network_tray_delegate.h" | 21 #include "ash/system/chromeos/network/network_tray_delegate.h" |
| 22 #include "ash/system/date/clock_observer.h" | 22 #include "ash/system/date/clock_observer.h" |
| 23 #include "ash/system/drive/drive_observer.h" | 23 #include "ash/system/drive/drive_observer.h" |
| 24 #include "ash/system/ime/ime_observer.h" | 24 #include "ash/system/ime/ime_observer.h" |
| 25 #include "ash/system/logout_button/logout_button_observer.h" | 25 #include "ash/system/logout_button/logout_button_observer.h" |
| 26 #include "ash/system/power/power_status_observer.h" | 26 #include "ash/system/power/power_status_observer.h" |
| 27 #include "ash/system/tray/system_tray.h" | 27 #include "ash/system/tray/system_tray.h" |
| 28 #include "ash/system/tray/system_tray_delegate.h" | 28 #include "ash/system/tray/system_tray_delegate.h" |
| 29 #include "ash/system/tray/system_tray_notifier.h" | 29 #include "ash/system/tray/system_tray_notifier.h" |
| (...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1582 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegate); | 1582 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegate); |
| 1583 }; | 1583 }; |
| 1584 | 1584 |
| 1585 } // namespace | 1585 } // namespace |
| 1586 | 1586 |
| 1587 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { | 1587 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { |
| 1588 return new chromeos::SystemTrayDelegate(); | 1588 return new chromeos::SystemTrayDelegate(); |
| 1589 } | 1589 } |
| 1590 | 1590 |
| 1591 } // namespace chromeos | 1591 } // namespace chromeos |
| OLD | NEW |