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

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

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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/chrome_browser_main_win.h ('k') | chrome/browser/chrome_child_process_watcher.h » ('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 "chrome/browser/chrome_browser_main_win.h" 5 #include "chrome/browser/chrome_browser_main_win.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <shellapi.h> 8 #include <shellapi.h>
9 #include <stddef.h>
9 10
10 #include <algorithm> 11 #include <algorithm>
11 12
12 #include "base/base_switches.h" 13 #include "base/base_switches.h"
13 #include "base/command_line.h" 14 #include "base/command_line.h"
14 #include "base/environment.h" 15 #include "base/environment.h"
15 #include "base/files/file_enumerator.h" 16 #include "base/files/file_enumerator.h"
16 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
17 #include "base/files/file_util.h" 18 #include "base/files/file_util.h"
18 #include "base/i18n/rtl.h" 19 #include "base/i18n/rtl.h"
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 if (resource_id) 574 if (resource_id)
574 return l10n_util::GetStringUTF16(resource_id); 575 return l10n_util::GetStringUTF16(resource_id);
575 return base::string16(); 576 return base::string16();
576 } 577 }
577 578
578 // static 579 // static
579 void ChromeBrowserMainPartsWin::SetupInstallerUtilStrings() { 580 void ChromeBrowserMainPartsWin::SetupInstallerUtilStrings() {
580 CR_DEFINE_STATIC_LOCAL(TranslationDelegate, delegate, ()); 581 CR_DEFINE_STATIC_LOCAL(TranslationDelegate, delegate, ());
581 installer::SetTranslationDelegate(&delegate); 582 installer::SetTranslationDelegate(&delegate);
582 } 583 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main_win.h ('k') | chrome/browser/chrome_child_process_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698