| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 89 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 90 #include "chrome/browser/ui/webui/chromeos/charger_replacement_handler.h" | 90 #include "chrome/browser/ui/webui/chromeos/charger_replacement_handler.h" |
| 91 #include "chrome/browser/ui/webui/chromeos/mobile_setup_dialog.h" | 91 #include "chrome/browser/ui/webui/chromeos/mobile_setup_dialog.h" |
| 92 #include "chrome/browser/upgrade_detector.h" | 92 #include "chrome/browser/upgrade_detector.h" |
| 93 #include "chrome/common/chrome_switches.h" | 93 #include "chrome/common/chrome_switches.h" |
| 94 #include "chrome/common/pref_names.h" | 94 #include "chrome/common/pref_names.h" |
| 95 #include "chrome/common/url_constants.h" | 95 #include "chrome/common/url_constants.h" |
| 96 #include "chromeos/dbus/dbus_thread_manager.h" | 96 #include "chromeos/dbus/dbus_thread_manager.h" |
| 97 #include "chromeos/dbus/session_manager_client.h" | 97 #include "chromeos/dbus/session_manager_client.h" |
| 98 #include "chromeos/ime/extension_ime_util.h" | 98 #include "chromeos/ime/extension_ime_util.h" |
| 99 #include "chromeos/ime/ime_keyboard.h" |
| 99 #include "chromeos/ime/input_method_manager.h" | 100 #include "chromeos/ime/input_method_manager.h" |
| 100 #include "chromeos/ime/xkeyboard.h" | |
| 101 #include "chromeos/login/login_state.h" | 101 #include "chromeos/login/login_state.h" |
| 102 #include "components/policy/core/common/cloud/cloud_policy_store.h" | 102 #include "components/policy/core/common/cloud/cloud_policy_store.h" |
| 103 #include "content/public/browser/notification_observer.h" | 103 #include "content/public/browser/notification_observer.h" |
| 104 #include "content/public/browser/notification_service.h" | 104 #include "content/public/browser/notification_service.h" |
| 105 #include "content/public/browser/user_metrics.h" | 105 #include "content/public/browser/user_metrics.h" |
| 106 #include "content/public/browser/web_contents.h" | 106 #include "content/public/browser/web_contents.h" |
| 107 #include "device/bluetooth/bluetooth_adapter.h" | 107 #include "device/bluetooth/bluetooth_adapter.h" |
| 108 #include "device/bluetooth/bluetooth_adapter_factory.h" | 108 #include "device/bluetooth/bluetooth_adapter_factory.h" |
| 109 #include "device/bluetooth/bluetooth_device.h" | 109 #include "device/bluetooth/bluetooth_device.h" |
| 110 #include "grit/ash_strings.h" | 110 #include "grit/ash_strings.h" |
| (...skipping 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1419 accessibility_subscription_.reset(); | 1419 accessibility_subscription_.reset(); |
| 1420 else | 1420 else |
| 1421 OnAccessibilityModeChanged(details.notify); | 1421 OnAccessibilityModeChanged(details.notify); |
| 1422 } | 1422 } |
| 1423 | 1423 |
| 1424 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { | 1424 ash::SystemTrayDelegate* CreateSystemTrayDelegate() { |
| 1425 return new SystemTrayDelegateChromeOS(); | 1425 return new SystemTrayDelegateChromeOS(); |
| 1426 } | 1426 } |
| 1427 | 1427 |
| 1428 } // namespace chromeos | 1428 } // namespace chromeos |
| OLD | NEW |