| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #include "chrome/browser/browser_process_impl.h" | 5 #include "chrome/browser/browser_process_impl.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/thread.h" | 8 #include "base/thread.h" |
| 9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 10 #include "chrome/browser/automation/automation_provider_list.h" | 10 #include "chrome/browser/automation/automation_provider_list.h" |
| 11 #include "chrome/browser/chrome_thread.h" | 11 #include "chrome/browser/chrome_thread.h" |
| 12 #include "chrome/browser/download_file.h" | 12 #include "chrome/browser/download/download_file.h" |
| 13 #include "chrome/browser/google_url_tracker.h" | 13 #include "chrome/browser/google_url_tracker.h" |
| 14 #include "chrome/browser/icon_manager.h" | 14 #include "chrome/browser/icon_manager.h" |
| 15 #include "chrome/browser/metrics_service.h" | 15 #include "chrome/browser/metrics_service.h" |
| 16 #include "chrome/browser/plugin_service.h" | 16 #include "chrome/browser/plugin_service.h" |
| 17 #include "chrome/browser/printing/print_job_manager.h" | 17 #include "chrome/browser/printing/print_job_manager.h" |
| 18 #include "chrome/browser/profile_manager.h" | 18 #include "chrome/browser/profile_manager.h" |
| 19 #include "chrome/browser/render_process_host.h" | 19 #include "chrome/browser/render_process_host.h" |
| 20 #include "chrome/browser/resource_dispatcher_host.h" | 20 #include "chrome/browser/resource_dispatcher_host.h" |
| 21 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 21 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
| 22 #include "chrome/browser/save_file_manager.h" | 22 #include "chrome/browser/save_file_manager.h" |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 new ChromeViews::AcceleratorHandler); | 343 new ChromeViews::AcceleratorHandler); |
| 344 accelerator_handler_.swap(accelerator_handler); | 344 accelerator_handler_.swap(accelerator_handler); |
| 345 } | 345 } |
| 346 | 346 |
| 347 void BrowserProcessImpl::CreateGoogleURLTracker() { | 347 void BrowserProcessImpl::CreateGoogleURLTracker() { |
| 348 DCHECK(google_url_tracker_.get() == NULL); | 348 DCHECK(google_url_tracker_.get() == NULL); |
| 349 scoped_ptr<GoogleURLTracker> google_url_tracker(new GoogleURLTracker); | 349 scoped_ptr<GoogleURLTracker> google_url_tracker(new GoogleURLTracker); |
| 350 google_url_tracker_.swap(google_url_tracker); | 350 google_url_tracker_.swap(google_url_tracker); |
| 351 } | 351 } |
| 352 | 352 |
| OLD | NEW |