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

Unified Diff: base/format_macros.h

Issue 6286038: Add initial code to do filename munging in the FileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
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
Index: base/format_macros.h
===================================================================
--- base/format_macros.h (revision 74905)
+++ base/format_macros.h (working copy)
@@ -47,6 +47,10 @@
#define PRIuS "zu"
#endif
+#if !defined(PRIxS)
+#define PRIxS "zx"
+#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 | chrome/browser/file_system/browser_file_system_helper.cc » ('j') | webkit/fileapi/file_system_file_util_proxy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698