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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 #include "chrome/common/pref_names.h" | 90 #include "chrome/common/pref_names.h" |
91 #include "chrome/common/url_constants.h" | 91 #include "chrome/common/url_constants.h" |
92 #include "chromeos/chromeos_switches.h" | 92 #include "chromeos/chromeos_switches.h" |
93 #include "chromeos/dbus/dbus_thread_manager.h" | 93 #include "chromeos/dbus/dbus_thread_manager.h" |
94 #include "chromeos/dbus/session_manager_client.h" | 94 #include "chromeos/dbus/session_manager_client.h" |
95 #include "chromeos/ime/extension_ime_util.h" | 95 #include "chromeos/ime/extension_ime_util.h" |
96 #include "chromeos/ime/input_method_manager.h" | 96 #include "chromeos/ime/input_method_manager.h" |
97 #include "chromeos/ime/xkeyboard.h" | 97 #include "chromeos/ime/xkeyboard.h" |
98 #include "chromeos/login/login_state.h" | 98 #include "chromeos/login/login_state.h" |
99 #include "components/policy/core/common/cloud/cloud_policy_store.h" | 99 #include "components/policy/core/common/cloud/cloud_policy_store.h" |
100 #include "content/public/browser/browser_thread.h" | |
101 #include "content/public/browser/notification_observer.h" | 100 #include "content/public/browser/notification_observer.h" |
102 #include "content/public/browser/notification_service.h" | 101 #include "content/public/browser/notification_service.h" |
103 #include "content/public/browser/user_metrics.h" | 102 #include "content/public/browser/user_metrics.h" |
104 #include "content/public/browser/web_contents.h" | 103 #include "content/public/browser/web_contents.h" |
105 #include "device/bluetooth/bluetooth_adapter.h" | 104 #include "device/bluetooth/bluetooth_adapter.h" |
106 #include "device/bluetooth/bluetooth_adapter_factory.h" | 105 #include "device/bluetooth/bluetooth_adapter_factory.h" |
107 #include "device/bluetooth/bluetooth_device.h" | 106 #include "device/bluetooth/bluetooth_device.h" |
108 #include "grit/ash_strings.h" | 107 #include "grit/ash_strings.h" |
109 #include "grit/generated_resources.h" | 108 #include "grit/generated_resources.h" |
110 #include "grit/locale_settings.h" | 109 #include "grit/locale_settings.h" |
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 void SystemTrayDelegateChromeOS::UserAddedToSession( | 1296 void SystemTrayDelegateChromeOS::UserAddedToSession( |
1298 const std::string& user_id) { | 1297 const std::string& user_id) { |
1299 GetSystemTrayNotifier()->NotifyUserAddedToSession(); | 1298 GetSystemTrayNotifier()->NotifyUserAddedToSession(); |
1300 } | 1299 } |
1301 | 1300 |
1302 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { | 1301 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { |
1303 return new SystemTrayDelegateChromeOS(); | 1302 return new SystemTrayDelegateChromeOS(); |
1304 } | 1303 } |
1305 | 1304 |
1306 } // namespace chromeos | 1305 } // namespace chromeos |
OLD | NEW |