| 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 "chrome/browser/ui/ash/system_tray_delegate_chromeos.h" | 5 #include "chrome/browser/ui/ash/system_tray_delegate_chromeos.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> |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 #include "components/user_manager/user.h" | 101 #include "components/user_manager/user.h" |
| 102 #include "components/user_manager/user_manager.h" | 102 #include "components/user_manager/user_manager.h" |
| 103 #include "components/user_manager/user_type.h" | 103 #include "components/user_manager/user_type.h" |
| 104 #include "content/public/browser/notification_observer.h" | 104 #include "content/public/browser/notification_observer.h" |
| 105 #include "content/public/browser/notification_service.h" | 105 #include "content/public/browser/notification_service.h" |
| 106 #include "content/public/browser/user_metrics.h" | 106 #include "content/public/browser/user_metrics.h" |
| 107 #include "content/public/browser/web_contents.h" | 107 #include "content/public/browser/web_contents.h" |
| 108 #include "device/bluetooth/bluetooth_adapter.h" | 108 #include "device/bluetooth/bluetooth_adapter.h" |
| 109 #include "device/bluetooth/bluetooth_adapter_factory.h" | 109 #include "device/bluetooth/bluetooth_adapter_factory.h" |
| 110 #include "device/bluetooth/bluetooth_device.h" | 110 #include "device/bluetooth/bluetooth_device.h" |
| 111 #include "grit/ash_strings.h" | |
| 112 #include "net/base/escape.h" | 111 #include "net/base/escape.h" |
| 113 #include "third_party/cros_system_api/dbus/service_constants.h" | 112 #include "third_party/cros_system_api/dbus/service_constants.h" |
| 114 #include "ui/base/l10n/l10n_util.h" | 113 #include "ui/base/l10n/l10n_util.h" |
| 115 #include "ui/base/l10n/time_format.h" | 114 #include "ui/base/l10n/time_format.h" |
| 116 | 115 |
| 117 namespace chromeos { | 116 namespace chromeos { |
| 118 | 117 |
| 119 namespace { | 118 namespace { |
| 120 | 119 |
| 121 // The minimum session length limit that can be set. | 120 // The minimum session length limit that can be set. |
| (...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1292 accessibility_subscription_.reset(); | 1291 accessibility_subscription_.reset(); |
| 1293 else | 1292 else |
| 1294 OnAccessibilityModeChanged(details.notify); | 1293 OnAccessibilityModeChanged(details.notify); |
| 1295 } | 1294 } |
| 1296 | 1295 |
| 1297 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { | 1296 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { |
| 1298 return new SystemTrayDelegateChromeOS(); | 1297 return new SystemTrayDelegateChromeOS(); |
| 1299 } | 1298 } |
| 1300 | 1299 |
| 1301 } // namespace chromeos | 1300 } // namespace chromeos |
| OLD | NEW |