| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 #endif | 324 #endif |
| 325 | 325 |
| 326 std::unique_ptr<network_time::NetworkTimeTracker> network_time_tracker_; | 326 std::unique_ptr<network_time::NetworkTimeTracker> network_time_tracker_; |
| 327 | 327 |
| 328 std::unique_ptr<gcm::GCMDriver> gcm_driver_; | 328 std::unique_ptr<gcm::GCMDriver> gcm_driver_; |
| 329 | 329 |
| 330 std::unique_ptr<ChromeChildProcessWatcher> child_process_watcher_; | 330 std::unique_ptr<ChromeChildProcessWatcher> child_process_watcher_; |
| 331 | 331 |
| 332 std::unique_ptr<ChromeDeviceClient> device_client_; | 332 std::unique_ptr<ChromeDeviceClient> device_client_; |
| 333 | 333 |
| 334 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) | 334 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX) |
| 335 // Any change to this #ifdef must be reflected as well in | 335 // Any change to this #ifdef must be reflected as well in |
| 336 // chrome/browser/memory/tab_manager_browsertest.cc | 336 // chrome/browser/memory/tab_manager_browsertest.cc |
| 337 std::unique_ptr<memory::TabManager> tab_manager_; | 337 std::unique_ptr<memory::TabManager> tab_manager_; |
| 338 #endif | 338 #endif |
| 339 | 339 |
| 340 shell_integration::DefaultWebClientState cached_default_web_client_state_; | 340 shell_integration::DefaultWebClientState cached_default_web_client_state_; |
| 341 | 341 |
| 342 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 342 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 343 }; | 343 }; |
| 344 | 344 |
| 345 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 345 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |