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

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

Issue 3058027: Add #include utf_string_conversions.h to all files that use ASCIIToWide and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_main.h" 5 #include "chrome/browser/browser_main.h"
6 #include "chrome/browser/browser_main_win.h" 6 #include "chrome/browser/browser_main_win.h"
7 7
8 #include <windows.h> 8 #include <windows.h>
9 #include <shellapi.h> 9 #include <shellapi.h>
10 10
11 #include <algorithm> 11 #include <algorithm>
12 12
13 #include "app/l10n_util.h" 13 #include "app/l10n_util.h"
14 #include "app/win_util.h" 14 #include "app/win_util.h"
15 #include "base/command_line.h" 15 #include "base/command_line.h"
16 #include "base/i18n/rtl.h" 16 #include "base/i18n/rtl.h"
17 #include "base/nss_util.h" 17 #include "base/nss_util.h"
18 #include "base/path_service.h" 18 #include "base/path_service.h"
19 #include "base/utf_string_conversions.h"
19 #include "base/win_util.h" 20 #include "base/win_util.h"
20 #include "chrome/browser/browser_list.h" 21 #include "chrome/browser/browser_list.h"
21 #include "chrome/browser/first_run/first_run.h" 22 #include "chrome/browser/first_run/first_run.h"
22 #include "chrome/browser/metrics/metrics_service.h" 23 #include "chrome/browser/metrics/metrics_service.h"
23 #include "chrome/browser/views/uninstall_view.h" 24 #include "chrome/browser/views/uninstall_view.h"
24 #include "chrome/common/chrome_switches.h" 25 #include "chrome/common/chrome_switches.h"
25 #include "chrome/common/env_vars.h" 26 #include "chrome/common/env_vars.h"
26 #include "chrome/common/result_codes.h" 27 #include "chrome/common/result_codes.h"
27 #include "chrome/installer/util/helper.h" 28 #include "chrome/installer/util/helper.h"
28 #include "chrome/installer/util/install_util.h" 29 #include "chrome/installer/util/install_util.h"
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 base::EnsureNSPRInit(); 232 base::EnsureNSPRInit();
232 } 233 }
233 } 234 }
234 }; 235 };
235 236
236 // static 237 // static
237 BrowserMainParts* BrowserMainParts::CreateBrowserMainParts( 238 BrowserMainParts* BrowserMainParts::CreateBrowserMainParts(
238 const MainFunctionParams& parameters) { 239 const MainFunctionParams& parameters) {
239 return new BrowserMainPartsWin(parameters); 240 return new BrowserMainPartsWin(parameters);
240 } 241 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/browsing_data_database_helper_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698