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

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

Issue 2511683002: Remove unneeded stringprintf.h usage in chrome/ and net/ (Closed)
Patch Set: rebase Created 4 years, 1 month 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
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 "chrome/app/main_dll_loader_win.h" 5 #include "chrome/app/main_dll_loader_win.h"
6 6
7 #include <windows.h> // NOLINT 7 #include <windows.h> // NOLINT
8 #include <shlwapi.h> // NOLINT 8 #include <shlwapi.h> // NOLINT
9 #include <stddef.h> 9 #include <stddef.h>
10 #include <stdint.h> 10 #include <stdint.h>
11 #include <userenv.h> // NOLINT 11 #include <userenv.h> // NOLINT
12 12
13 #include <memory> 13 #include <memory>
14 14
15 #include "base/base_paths.h" 15 #include "base/base_paths.h"
16 #include "base/base_switches.h" 16 #include "base/base_switches.h"
17 #include "base/command_line.h" 17 #include "base/command_line.h"
18 #include "base/compiler_specific.h" 18 #include "base/compiler_specific.h"
19 #include "base/files/file_path.h" 19 #include "base/files/file_path.h"
20 #include "base/lazy_instance.h" 20 #include "base/lazy_instance.h"
21 #include "base/logging.h" 21 #include "base/logging.h"
22 #include "base/macros.h" 22 #include "base/macros.h"
23 #include "base/path_service.h" 23 #include "base/path_service.h"
24 #include "base/strings/string16.h" 24 #include "base/strings/string16.h"
25 #include "base/strings/string_util.h" 25 #include "base/strings/string_util.h"
26 #include "base/strings/stringprintf.h"
27 #include "base/strings/utf_string_conversions.h" 26 #include "base/strings/utf_string_conversions.h"
28 #include "base/trace_event/trace_event.h" 27 #include "base/trace_event/trace_event.h"
29 #include "base/win/scoped_handle.h" 28 #include "base/win/scoped_handle.h"
30 #include "base/win/windows_version.h" 29 #include "base/win/windows_version.h"
31 #include "chrome/app/chrome_crash_reporter_client_win.h" 30 #include "chrome/app/chrome_crash_reporter_client_win.h"
32 #include "chrome/app/chrome_watcher_client_win.h" 31 #include "chrome/app/chrome_watcher_client_win.h"
33 #include "chrome/app/chrome_watcher_command_line_win.h" 32 #include "chrome/app/chrome_watcher_command_line_win.h"
34 #include "chrome/app/file_pre_reader_win.h" 33 #include "chrome/app/file_pre_reader_win.h"
35 #include "chrome/chrome_watcher/chrome_watcher_main_api.h" 34 #include "chrome/chrome_watcher/chrome_watcher_main_api.h"
36 #include "chrome/common/chrome_constants.h" 35 #include "chrome/common/chrome_constants.h"
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 } 253 }
255 }; 254 };
256 255
257 MainDllLoader* MakeMainDllLoader() { 256 MainDllLoader* MakeMainDllLoader() {
258 #if defined(GOOGLE_CHROME_BUILD) 257 #if defined(GOOGLE_CHROME_BUILD)
259 return new ChromeDllLoader(); 258 return new ChromeDllLoader();
260 #else 259 #else
261 return new ChromiumDllLoader(); 260 return new ChromiumDllLoader();
262 #endif 261 #endif
263 } 262 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698