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

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

Issue 1548153002: Switch to standard integer types in chrome/. (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/app/chrome_exe_main_win.cc ('k') | chrome/app/chrome_main_delegate.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/app/chrome_main_delegate.h" 5 #include "chrome/app/chrome_main_delegate.h"
6 6
7 #include "build/build_config.h"
7 #include "content/public/app/content_main.h" 8 #include "content/public/app/content_main.h"
8 9
9 #if defined(OS_WIN) 10 #if defined(OS_WIN)
10 #include "base/debug/dump_without_crashing.h" 11 #include "base/debug/dump_without_crashing.h"
11 #include "base/win/win_util.h" 12 #include "base/win/win_util.h"
12 #include "chrome/common/chrome_constants.h" 13 #include "chrome/common/chrome_constants.h"
13 14
14 #define DLLEXPORT __declspec(dllexport) 15 #define DLLEXPORT __declspec(dllexport)
15 16
16 // We use extern C for the prototype DLLEXPORT to avoid C++ name mangling. 17 // We use extern C for the prototype DLLEXPORT to avoid C++ name mangling.
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #endif 65 #endif
65 66
66 int rv = content::ContentMain(params); 67 int rv = content::ContentMain(params);
67 68
68 #if defined(OS_WIN) 69 #if defined(OS_WIN)
69 base::win::SetShouldCrashOnProcessDetach(false); 70 base::win::SetShouldCrashOnProcessDetach(false);
70 #endif 71 #endif
71 72
72 return rv; 73 return rv;
73 } 74 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_exe_main_win.cc ('k') | chrome/app/chrome_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698