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

Unified Diff: base/format_macros.h

Issue 6604020: Introduce FileSystemFileUtil and -Proxy to decorate base::file_util in webkit/fileapi. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/fileapi/file_system_context.h » ('j') | webkit/fileapi/file_system_context.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/format_macros.h
diff --git a/base/format_macros.h b/base/format_macros.h
index 3afad59bb36ad5d9e0aae5f029ab70eb78e12c10..595eaa4baac82d0e9ce81e231c36be4af5be1950 100644
--- a/base/format_macros.h
+++ b/base/format_macros.h
@@ -47,6 +47,10 @@
#define PRIuS "zu"
#endif
+#if !defined(PRIxS)
+#define PRIxS "zx"
ericu 2011/03/03 01:05:11 This was only needed for the obfuscation code; you
Dai Mikurube (google.com) 2011/03/03 20:24:52 Ok, thanks. I've dropped them from this CL. Let's
+#endif
+
#else // OS_WIN
#if !defined(PRId64)
@@ -69,6 +73,10 @@
#define PRIuS "Iu"
#endif
+#if !defined(PRIxS)
+#define PRIxS "Ix"
+#endif
+
#endif
#endif // BASE_FORMAT_MACROS_H_
« no previous file with comments | « no previous file | webkit/fileapi/file_system_context.h » ('j') | webkit/fileapi/file_system_context.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698