| 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 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ | 6 #define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/threading/non_thread_safe.h" | 10 #include "base/threading/non_thread_safe.h" |
| 11 #include "chrome/browser/browser_process_platform_part_base.h" | 11 #include "chrome/browser/browser_process_platform_part_base.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 class CommandLine; | 14 class CommandLine; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 class ChromeUserManager; | 18 class ChromeUserManager; |
| 19 class OomPriorityManager; | 19 class OomPriorityManager; |
| 20 class ProfileHelper; | 20 class ProfileHelper; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace chromeos { | 23 namespace chromeos { |
| 24 namespace system { | 24 namespace system { |
| 25 class AutomaticRebootManager; | 25 class AutomaticRebootManager; |
| 26 class DeviceDisablingManager; | 26 class DeviceDisablingManager; |
| 27 class DeviceDisablingManagerDefaultDelegate; |
| 27 } | 28 } |
| 28 } | 29 } |
| 29 | 30 |
| 30 namespace policy { | 31 namespace policy { |
| 31 class BrowserPolicyConnector; | 32 class BrowserPolicyConnector; |
| 32 class BrowserPolicyConnectorChromeOS; | 33 class BrowserPolicyConnectorChromeOS; |
| 33 } | 34 } |
| 34 | 35 |
| 35 namespace session_manager { | 36 namespace session_manager { |
| 36 class SessionManager; | 37 class SessionManager; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 bool created_profile_helper_; | 100 bool created_profile_helper_; |
| 100 scoped_ptr<chromeos::ProfileHelper> profile_helper_; | 101 scoped_ptr<chromeos::ProfileHelper> profile_helper_; |
| 101 | 102 |
| 102 scoped_ptr<chromeos::OomPriorityManager> oom_priority_manager_; | 103 scoped_ptr<chromeos::OomPriorityManager> oom_priority_manager_; |
| 103 | 104 |
| 104 scoped_ptr<chromeos::system::AutomaticRebootManager> | 105 scoped_ptr<chromeos::system::AutomaticRebootManager> |
| 105 automatic_reboot_manager_; | 106 automatic_reboot_manager_; |
| 106 | 107 |
| 107 scoped_ptr<chromeos::ChromeUserManager> chrome_user_manager_; | 108 scoped_ptr<chromeos::ChromeUserManager> chrome_user_manager_; |
| 108 | 109 |
| 110 scoped_ptr<chromeos::system::DeviceDisablingManagerDefaultDelegate> |
| 111 device_disabling_manager_delegate_; |
| 109 scoped_ptr<chromeos::system::DeviceDisablingManager> | 112 scoped_ptr<chromeos::system::DeviceDisablingManager> |
| 110 device_disabling_manager_; | 113 device_disabling_manager_; |
| 111 | 114 |
| 112 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart); | 115 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart); |
| 113 }; | 116 }; |
| 114 | 117 |
| 115 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ | 118 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ |
| OLD | NEW |