| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 | 162 |
| 163 bool created_local_state_; | 163 bool created_local_state_; |
| 164 scoped_ptr<PrefService> local_state_; | 164 scoped_ptr<PrefService> local_state_; |
| 165 | 165 |
| 166 bool created_icon_manager_; | 166 bool created_icon_manager_; |
| 167 scoped_ptr<IconManager> icon_manager_; | 167 scoped_ptr<IconManager> icon_manager_; |
| 168 | 168 |
| 169 scoped_refptr<extensions::EventRouterForwarder> | 169 scoped_refptr<extensions::EventRouterForwarder> |
| 170 extension_event_router_forwarder_; | 170 extension_event_router_forwarder_; |
| 171 | 171 |
| 172 #if !defined(OS_ANDROID) |
| 172 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; | 173 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; |
| 174 #endif |
| 173 | 175 |
| 174 scoped_refptr<printing::PrintPreviewTabController> | 176 scoped_refptr<printing::PrintPreviewTabController> |
| 175 print_preview_tab_controller_; | 177 print_preview_tab_controller_; |
| 176 | 178 |
| 177 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; | 179 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; |
| 178 | 180 |
| 179 scoped_ptr<ui::Clipboard> clipboard_; | 181 scoped_ptr<ui::Clipboard> clipboard_; |
| 180 | 182 |
| 181 scoped_ptr<chrome_variations::VariationsService> variations_service_; | 183 scoped_ptr<chrome_variations::VariationsService> variations_service_; |
| 182 | 184 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 #endif | 257 #endif |
| 256 | 258 |
| 257 // TODO(eroman): Remove this when done debugging 113031. This tracks | 259 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 258 // the callstack which released the final module reference count. | 260 // the callstack which released the final module reference count. |
| 259 base::debug::StackTrace release_last_reference_callstack_; | 261 base::debug::StackTrace release_last_reference_callstack_; |
| 260 | 262 |
| 261 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 263 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 262 }; | 264 }; |
| 263 | 265 |
| 264 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 266 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |