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

Side by Side Diff: chrome/app/client_util.cc

Issue 16320010: Use a direct include of strings headers in chrome/app/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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/app/client_util.h ('k') | chrome/app/delay_load_hook_win.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) 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 #include <windows.h> 5 #include <windows.h>
6 #include <shlwapi.h> 6 #include <shlwapi.h>
7 7
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/environment.h" 10 #include "base/environment.h"
11 #include "base/file_version_info.h" 11 #include "base/file_version_info.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/string16.h" 14 #include "base/strings/string16.h"
15 #include "base/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/stringprintf.h" 16 #include "base/strings/stringprintf.h"
17 #include "base/strings/utf_string_conversions.h" 17 #include "base/strings/utf_string_conversions.h"
18 #include "base/version.h" 18 #include "base/version.h"
19 #include "base/win/registry.h" 19 #include "base/win/registry.h"
20 #include "chrome/app/breakpad_win.h" 20 #include "chrome/app/breakpad_win.h"
21 #include "chrome/app/client_util.h" 21 #include "chrome/app/client_util.h"
22 #include "chrome/common/chrome_constants.h" 22 #include "chrome/common/chrome_constants.h"
23 #include "chrome/common/chrome_result_codes.h" 23 #include "chrome/common/chrome_result_codes.h"
24 #include "chrome/common/chrome_switches.h" 24 #include "chrome/common/chrome_switches.h"
25 #include "chrome/common/env_vars.h" 25 #include "chrome/common/env_vars.h"
26 #include "chrome/installer/util/browser_distribution.h" 26 #include "chrome/installer/util/browser_distribution.h"
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 } 269 }
270 }; 270 };
271 271
272 MainDllLoader* MakeMainDllLoader() { 272 MainDllLoader* MakeMainDllLoader() {
273 #if defined(GOOGLE_CHROME_BUILD) 273 #if defined(GOOGLE_CHROME_BUILD)
274 return new ChromeDllLoader(); 274 return new ChromeDllLoader();
275 #else 275 #else
276 return new ChromiumDllLoader(); 276 return new ChromiumDllLoader();
277 #endif 277 #endif
278 } 278 }
OLDNEW
« no previous file with comments | « chrome/app/client_util.h ('k') | chrome/app/delay_load_hook_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698