Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: chrome/browser/browser_process_impl.cc

Issue 2826: Move the download code to new directories: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_prefs.cc ('k') | chrome/browser/browsing_data_remover.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/browser_prefs.cc ('k') | chrome/browser/browsing_data_remover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698