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

Side by Side Diff: base/port.h

Issue 218953003: Remove all uses of GG_LONGLONG and GG_ULONGLONG. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win? Created 6 years, 8 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 | « base/basictypes.h ('k') | chrome/browser/chromeos/drive/file_system_unittest.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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifndef BASE_PORT_H_ 5 #ifndef BASE_PORT_H_
6 #define BASE_PORT_H_ 6 #define BASE_PORT_H_
7 7
8 #include <stdarg.h> 8 #include <stdarg.h>
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
11 // DEPRECATED: Use ...LL and ...ULL suffixes.
12 // TODO(viettrungluu): Delete these. These are only here until |GG_(U)INT64_C|
13 // are deleted (some other header files (re)define |GG_(U)INT64_C|, so our
14 // definitions of them must exactly match theirs).
11 #ifdef COMPILER_MSVC 15 #ifdef COMPILER_MSVC
12 #define GG_LONGLONG(x) x##I64 16 #define GG_LONGLONG(x) x##I64
13 #define GG_ULONGLONG(x) x##UI64 17 #define GG_ULONGLONG(x) x##UI64
14 #else 18 #else
15 #define GG_LONGLONG(x) x##LL 19 #define GG_LONGLONG(x) x##LL
16 #define GG_ULONGLONG(x) x##ULL 20 #define GG_ULONGLONG(x) x##ULL
17 #endif 21 #endif
18 22
19 // DEPRECATED: In Chromium, we force-define __STDC_CONSTANT_MACROS, so you can 23 // DEPRECATED: In Chromium, we force-define __STDC_CONSTANT_MACROS, so you can
20 // just use the regular (U)INTn_C macros from <stdint.h>. 24 // just use the regular (U)INTn_C macros from <stdint.h>.
(...skipping 14 matching lines...) Expand all
35 #endif 39 #endif
36 40
37 // Define an OS-neutral wrapper for shared library entry points 41 // Define an OS-neutral wrapper for shared library entry points
38 #if defined(OS_WIN) 42 #if defined(OS_WIN)
39 #define API_CALL __stdcall 43 #define API_CALL __stdcall
40 #else 44 #else
41 #define API_CALL 45 #define API_CALL
42 #endif 46 #endif
43 47
44 #endif // BASE_PORT_H_ 48 #endif // BASE_PORT_H_
OLDNEW
« no previous file with comments | « base/basictypes.h ('k') | chrome/browser/chromeos/drive/file_system_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698