OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "chrome/browser/chrome_browser_main_linux.h" | 9 #include "chrome/browser/chrome_browser_main_linux.h" |
10 #include "chrome/browser/chromeos/version_loader.h" | 10 #include "chrome/browser/chromeos/version_loader.h" |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 virtual void PostMainMessageLoopStart() OVERRIDE; | 59 virtual void PostMainMessageLoopStart() OVERRIDE; |
60 virtual void PreMainMessageLoopRun() OVERRIDE; | 60 virtual void PreMainMessageLoopRun() OVERRIDE; |
61 | 61 |
62 // Stages called from PreMainMessageLoopRun. | 62 // Stages called from PreMainMessageLoopRun. |
63 virtual void PreProfileInit() OVERRIDE; | 63 virtual void PreProfileInit() OVERRIDE; |
64 virtual void PostProfileInit() OVERRIDE; | 64 virtual void PostProfileInit() OVERRIDE; |
65 virtual void PreBrowserStart() OVERRIDE; | 65 virtual void PreBrowserStart() OVERRIDE; |
66 virtual void PostBrowserStart() OVERRIDE; | 66 virtual void PostBrowserStart() OVERRIDE; |
67 | 67 |
68 virtual void PostMainMessageLoopRun() OVERRIDE; | 68 virtual void PostMainMessageLoopRun() OVERRIDE; |
| 69 virtual void PostDestroyThreads() OVERRIDE; |
69 | 70 |
70 virtual void SetupPlatformFieldTrials() OVERRIDE; | 71 virtual void SetupPlatformFieldTrials() OVERRIDE; |
71 | 72 |
72 private: | 73 private: |
73 void SetupZramFieldTrial(); | 74 void SetupZramFieldTrial(); |
74 | 75 |
75 scoped_ptr<contacts::ContactManager> contact_manager_; | 76 scoped_ptr<contacts::ContactManager> contact_manager_; |
76 scoped_ptr<BrightnessObserver> brightness_observer_; | 77 scoped_ptr<BrightnessObserver> brightness_observer_; |
77 scoped_ptr<DisplayConfigurationObserver> display_configuration_observer_; | 78 scoped_ptr<DisplayConfigurationObserver> display_configuration_observer_; |
78 scoped_ptr<default_app_order::ExternalLoader> app_order_loader_; | 79 scoped_ptr<default_app_order::ExternalLoader> app_order_loader_; |
(...skipping 15 matching lines...) Expand all Loading... |
94 VersionLoader cros_version_loader_; | 95 VersionLoader cros_version_loader_; |
95 CancelableTaskTracker tracker_; | 96 CancelableTaskTracker tracker_; |
96 bool use_new_network_change_notifier_; | 97 bool use_new_network_change_notifier_; |
97 | 98 |
98 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); | 99 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); |
99 }; | 100 }; |
100 | 101 |
101 } // namespace chromeos | 102 } // namespace chromeos |
102 | 103 |
103 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 104 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
OLD | NEW |