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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; | 123 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; |
124 | 124 |
125 private: | 125 private: |
126 void CreateMetricsService(); | 126 void CreateMetricsService(); |
127 void CreateWatchdogThread(); | 127 void CreateWatchdogThread(); |
128 #if defined(OS_CHROMEOS) | 128 #if defined(OS_CHROMEOS) |
129 void InitializeWebSocketProxyThread(); | 129 void InitializeWebSocketProxyThread(); |
130 #endif | 130 #endif |
131 void CreateTemplateURLService(); | 131 void CreateTemplateURLService(); |
132 void CreateProfileManager(); | 132 void CreateProfileManager(); |
133 void CreateWebDataService(); | |
134 void CreateLocalState(); | 133 void CreateLocalState(); |
135 void CreateViewedPageTracker(); | 134 void CreateViewedPageTracker(); |
136 void CreateIconManager(); | 135 void CreateIconManager(); |
137 void CreateGoogleURLTracker(); | 136 void CreateGoogleURLTracker(); |
138 void CreateIntranetRedirectDetector(); | 137 void CreateIntranetRedirectDetector(); |
139 void CreateNotificationUIManager(); | 138 void CreateNotificationUIManager(); |
140 void CreateStatusTrayManager(); | 139 void CreateStatusTrayManager(); |
141 void CreateTabCloseableStateWatcher(); | 140 void CreateTabCloseableStateWatcher(); |
142 void CreatePrintPreviewTabController(); | 141 void CreatePrintPreviewTabController(); |
143 void CreateBackgroundPrintingManager(); | 142 void CreateBackgroundPrintingManager(); |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 #endif | 264 #endif |
266 | 265 |
267 // TODO(eroman): Remove this when done debugging 113031. This tracks | 266 // TODO(eroman): Remove this when done debugging 113031. This tracks |
268 // the callstack which released the final module reference count. | 267 // the callstack which released the final module reference count. |
269 base::debug::StackTrace release_last_reference_callstack_; | 268 base::debug::StackTrace release_last_reference_callstack_; |
270 | 269 |
271 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 270 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
272 }; | 271 }; |
273 | 272 |
274 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 273 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |