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

Unified Diff: third_party/crashpad/crashpad/util/misc/clock_test.cc

Issue 2478633002: Update Crashpad to b47bf6c250c6b825dee1c5fbad9152c2c962e828 (Closed)
Patch Set: mac comment 2 Created 4 years, 1 month 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: third_party/crashpad/crashpad/util/misc/clock_test.cc
diff --git a/third_party/crashpad/crashpad/util/misc/clock_test.cc b/third_party/crashpad/crashpad/util/misc/clock_test.cc
index c6e2c02ad0bf48c0a93bd16df7d2eb53dd2d0b10..d7f9cd7159c4ab1fd424b9f4e998c62910a88ff9 100644
--- a/third_party/crashpad/crashpad/util/misc/clock_test.cc
+++ b/third_party/crashpad/crashpad/util/misc/clock_test.cc
@@ -14,11 +14,11 @@
#include "util/misc/clock.h"
-#include <stdint.h>
#include <sys/types.h>
#include <algorithm>
+#include "base/format_macros.h"
#include "base/logging.h"
#include "base/macros.h"
#include "base/strings/stringprintf.h"
@@ -85,8 +85,8 @@ TEST(Clock, SleepNanoseconds) {
for (size_t index = 0; index < arraysize(kTestData); ++index) {
const uint64_t nanoseconds = kTestData[index];
- SCOPED_TRACE(
- base::StringPrintf("index %zu, nanoseconds %llu", index, nanoseconds));
+ SCOPED_TRACE(base::StringPrintf(
+ "index %zu, nanoseconds %" PRIu64, index, nanoseconds));
TestSleepNanoseconds(nanoseconds);
}
« no previous file with comments | « third_party/crashpad/crashpad/util/file/file_writer.cc ('k') | third_party/crashpad/crashpad/util/misc/metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698