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

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

Issue 7307: Reduce header dependencies. (Closed)
Patch Set: retry Created 12 years, 2 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
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/browser/browser_main.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_init.h" 5 #include "chrome/browser/browser_init.h"
6 6
7 #include <shellapi.h> 7 #include <shellapi.h>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/event_recorder.h" 11 #include "base/event_recorder.h"
12 #include "base/file_util.h" 12 #include "base/file_util.h"
13 #include "base/histogram.h" 13 #include "base/histogram.h"
14 #include "base/path_service.h" 14 #include "base/path_service.h"
15 #include "base/process_util.h"
15 #include "base/string_util.h" 16 #include "base/string_util.h"
16 #include "base/win_util.h" 17 #include "base/win_util.h"
17 #include "chrome/app/locales/locale_settings.h" 18 #include "chrome/app/locales/locale_settings.h"
18 #include "chrome/app/result_codes.h" 19 #include "chrome/app/result_codes.h"
19 #include "chrome/browser/automation/automation_provider.h" 20 #include "chrome/browser/automation/automation_provider.h"
20 #include "chrome/browser/browser_list.h" 21 #include "chrome/browser/browser_list.h"
21 #include "chrome/browser/browser_process.h" 22 #include "chrome/browser/browser_process.h"
22 #include "chrome/browser/dom_ui/new_tab_ui.h" 23 #include "chrome/browser/dom_ui/new_tab_ui.h"
23 #include "chrome/browser/first_run.h" 24 #include "chrome/browser/first_run.h"
24 #include "chrome/browser/navigation_controller.h" 25 #include "chrome/browser/navigation_controller.h"
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 new AutomationProviderClass(profile); 713 new AutomationProviderClass(profile);
713 automation->ConnectToChannel(channel_id); 714 automation->ConnectToChannel(channel_id);
714 automation->SetExpectedTabCount(expected_tabs); 715 automation->SetExpectedTabCount(expected_tabs);
715 716
716 AutomationProviderList* list = 717 AutomationProviderList* list =
717 g_browser_process->InitAutomationProviderList(); 718 g_browser_process->InitAutomationProviderList();
718 DCHECK(list); 719 DCHECK(list);
719 list->AddProvider(automation); 720 list->AddProvider(automation);
720 } 721 }
721 722
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/browser/browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698