| 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 <stddef.h> |
| 8 |
| 7 #include <string> | 9 #include <string> |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "ash/ash_switches.h" | 12 #include "ash/ash_switches.h" |
| 11 #include "ash/shell.h" | 13 #include "ash/shell.h" |
| 12 #include "base/bind.h" | 14 #include "base/bind.h" |
| 13 #include "base/callback.h" | 15 #include "base/callback.h" |
| 14 #include "base/command_line.h" | 16 #include "base/command_line.h" |
| 15 #include "base/files/file_util.h" | 17 #include "base/files/file_util.h" |
| 16 #include "base/lazy_instance.h" | 18 #include "base/lazy_instance.h" |
| 17 #include "base/linux_util.h" | 19 #include "base/linux_util.h" |
| 20 #include "base/macros.h" |
| 18 #include "base/path_service.h" | 21 #include "base/path_service.h" |
| 19 #include "base/prefs/pref_service.h" | 22 #include "base/prefs/pref_service.h" |
| 20 #include "base/strings/string_number_conversions.h" | 23 #include "base/strings/string_number_conversions.h" |
| 21 #include "base/strings/string_split.h" | 24 #include "base/strings/string_split.h" |
| 22 #include "base/sys_info.h" | 25 #include "base/sys_info.h" |
| 23 #include "base/task_runner_util.h" | 26 #include "base/task_runner_util.h" |
| 24 #include "chrome/browser/browser_process.h" | 27 #include "chrome/browser/browser_process.h" |
| 25 #include "chrome/browser/browser_process_platform_part_chromeos.h" | 28 #include "chrome/browser/browser_process_platform_part_chromeos.h" |
| 26 #include "chrome/browser/chrome_notification_types.h" | 29 #include "chrome/browser/chrome_notification_types.h" |
| 27 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 30 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 // Destroy DBus services immediately after threads are stopped. | 826 // Destroy DBus services immediately after threads are stopped. |
| 824 dbus_services_.reset(); | 827 dbus_services_.reset(); |
| 825 | 828 |
| 826 ChromeBrowserMainPartsLinux::PostDestroyThreads(); | 829 ChromeBrowserMainPartsLinux::PostDestroyThreads(); |
| 827 | 830 |
| 828 // Destroy DeviceSettingsService after g_browser_process. | 831 // Destroy DeviceSettingsService after g_browser_process. |
| 829 DeviceSettingsService::Shutdown(); | 832 DeviceSettingsService::Shutdown(); |
| 830 } | 833 } |
| 831 | 834 |
| 832 } // namespace chromeos | 835 } // namespace chromeos |
| OLD | NEW |