| 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/basictypes.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 chromeos { | 13 namespace chromeos { |
| 14 class OomPriorityManager; | 14 class OomPriorityManager; |
| 15 class ProfileHelper; | 15 class ProfileHelper; |
| 16 } | 16 } |
| 17 | 17 |
| 18 class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase, | 18 class BrowserProcessPlatformPart : public BrowserProcessPlatformPartBase, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 bool created_profile_helper_; | 37 bool created_profile_helper_; |
| 38 scoped_ptr<chromeos::ProfileHelper> profile_helper_; | 38 scoped_ptr<chromeos::ProfileHelper> profile_helper_; |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 scoped_ptr<chromeos::OomPriorityManager> oom_priority_manager_; | 41 scoped_ptr<chromeos::OomPriorityManager> oom_priority_manager_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart); | 43 DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ | 46 #endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_ |
| OLD | NEW |