| 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 // When each service is created, we set a flag indicating this. At this point, | 5 // When each service is created, we set a flag indicating this. At this point, |
| 6 // the service initialization could fail or succeed. This allows us to remember | 6 // the service initialization could fail or succeed. This allows us to remember |
| 7 // if we tried to create a service, and not try creating it over and over if | 7 // if we tried to create a service, and not try creating it over and over if |
| 8 // the creation failed. | 8 // the creation failed. |
| 9 | 9 |
| 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 const content::NotificationDetails& details) OVERRIDE; | 120 const content::NotificationDetails& details) OVERRIDE; |
| 121 | 121 |
| 122 private: | 122 private: |
| 123 void CreateMetricsService(); | 123 void CreateMetricsService(); |
| 124 void CreateWatchdogThread(); | 124 void CreateWatchdogThread(); |
| 125 #if defined(OS_CHROMEOS) | 125 #if defined(OS_CHROMEOS) |
| 126 void InitializeWebSocketProxyThread(); | 126 void InitializeWebSocketProxyThread(); |
| 127 #endif | 127 #endif |
| 128 void CreateTemplateURLService(); | 128 void CreateTemplateURLService(); |
| 129 void CreateProfileManager(); | 129 void CreateProfileManager(); |
| 130 void CreateWebDataService(); | |
| 131 void CreateLocalState(); | 130 void CreateLocalState(); |
| 132 void CreateViewedPageTracker(); | 131 void CreateViewedPageTracker(); |
| 133 void CreateIconManager(); | 132 void CreateIconManager(); |
| 134 void CreateIntranetRedirectDetector(); | 133 void CreateIntranetRedirectDetector(); |
| 135 void CreateNotificationUIManager(); | 134 void CreateNotificationUIManager(); |
| 136 void CreateStatusTrayManager(); | 135 void CreateStatusTrayManager(); |
| 137 void CreateTabCloseableStateWatcher(); | 136 void CreateTabCloseableStateWatcher(); |
| 138 void CreatePrintPreviewTabController(); | 137 void CreatePrintPreviewTabController(); |
| 139 void CreateBackgroundPrintingManager(); | 138 void CreateBackgroundPrintingManager(); |
| 140 void CreateSafeBrowsingService(); | 139 void CreateSafeBrowsingService(); |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 #endif | 257 #endif |
| 259 | 258 |
| 260 // TODO(eroman): Remove this when done debugging 113031. This tracks | 259 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 261 // the callstack which released the final module reference count. | 260 // the callstack which released the final module reference count. |
| 262 base::debug::StackTrace release_last_reference_callstack_; | 261 base::debug::StackTrace release_last_reference_callstack_; |
| 263 | 262 |
| 264 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 263 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 265 }; | 264 }; |
| 266 | 265 |
| 267 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 266 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |