| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/chromeos/chrome_browser_main_chromeos.h" | 5 #include "chrome/browser/chromeos/chrome_browser_main_chromeos.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 #include "chromeos/dbus/services/proxy_resolution_service_provider.h" | 103 #include "chromeos/dbus/services/proxy_resolution_service_provider.h" |
| 104 #include "chromeos/dbus/session_manager_client.h" | 104 #include "chromeos/dbus/session_manager_client.h" |
| 105 #include "chromeos/disks/disk_mount_manager.h" | 105 #include "chromeos/disks/disk_mount_manager.h" |
| 106 #include "chromeos/login/login_state.h" | 106 #include "chromeos/login/login_state.h" |
| 107 #include "chromeos/login/user_names.h" | 107 #include "chromeos/login/user_names.h" |
| 108 #include "chromeos/login_event_recorder.h" | 108 #include "chromeos/login_event_recorder.h" |
| 109 #include "chromeos/network/network_change_notifier_chromeos.h" | 109 #include "chromeos/network/network_change_notifier_chromeos.h" |
| 110 #include "chromeos/network/network_change_notifier_factory_chromeos.h" | 110 #include "chromeos/network/network_change_notifier_factory_chromeos.h" |
| 111 #include "chromeos/network/network_handler.h" | 111 #include "chromeos/network/network_handler.h" |
| 112 #include "chromeos/system/statistics_provider.h" | 112 #include "chromeos/system/statistics_provider.h" |
| 113 #include "chromeos/tpm_token_loader.h" | 113 #include "chromeos/tpm/tpm_token_loader.h" |
| 114 #include "components/metrics/metrics_service.h" | 114 #include "components/metrics/metrics_service.h" |
| 115 #include "components/ownership/owner_key_util.h" | 115 #include "components/ownership/owner_key_util.h" |
| 116 #include "components/session_manager/core/session_manager.h" | 116 #include "components/session_manager/core/session_manager.h" |
| 117 #include "components/user_manager/user.h" | 117 #include "components/user_manager/user.h" |
| 118 #include "components/user_manager/user_manager.h" | 118 #include "components/user_manager/user_manager.h" |
| 119 #include "content/public/browser/browser_thread.h" | 119 #include "content/public/browser/browser_thread.h" |
| 120 #include "content/public/browser/notification_service.h" | 120 #include "content/public/browser/notification_service.h" |
| 121 #include "content/public/browser/power_save_blocker.h" | 121 #include "content/public/browser/power_save_blocker.h" |
| 122 #include "content/public/common/main_function_params.h" | 122 #include "content/public/common/main_function_params.h" |
| 123 #include "media/audio/sounds/sounds_manager.h" | 123 #include "media/audio/sounds/sounds_manager.h" |
| (...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 820 // Destroy DBus services immediately after threads are stopped. | 820 // Destroy DBus services immediately after threads are stopped. |
| 821 dbus_services_.reset(); | 821 dbus_services_.reset(); |
| 822 | 822 |
| 823 ChromeBrowserMainPartsLinux::PostDestroyThreads(); | 823 ChromeBrowserMainPartsLinux::PostDestroyThreads(); |
| 824 | 824 |
| 825 // Destroy DeviceSettingsService after g_browser_process. | 825 // Destroy DeviceSettingsService after g_browser_process. |
| 826 DeviceSettingsService::Shutdown(); | 826 DeviceSettingsService::Shutdown(); |
| 827 } | 827 } |
| 828 | 828 |
| 829 } // namespace chromeos | 829 } // namespace chromeos |
| OLD | NEW |