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

Unified Diff: components/autofill/content/browser/autocheckout/whitelist_manager_unittest.cc

Issue 20182002: Make inttypes.h and similar macro usage C++11-friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: line Created 7 years, 5 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 | « chrome/test/webdriver/http_response.cc ('k') | content/common/content_param_traits.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/content/browser/autocheckout/whitelist_manager_unittest.cc
diff --git a/components/autofill/content/browser/autocheckout/whitelist_manager_unittest.cc b/components/autofill/content/browser/autocheckout/whitelist_manager_unittest.cc
index 6420b6d2fd9ac4379d88a009ac70f97bd20732af..304d8bf02b85951403fa19c3ca4f3649f3c45b68 100644
--- a/components/autofill/content/browser/autocheckout/whitelist_manager_unittest.cc
+++ b/components/autofill/content/browser/autocheckout/whitelist_manager_unittest.cc
@@ -206,9 +206,10 @@ TEST_F(WhitelistManagerTest, DownloadWhitelistRetry) {
for (size_t i = 0; i < arraysize(kBackoffDelaysInMs); ++i) {
DownloadWhitelist(net::HTTP_INTERNAL_SERVER_ERROR,
kDownloadWhitelistResponse);
- SCOPED_TRACE(
- base::StringPrintf("Testing retry %"PRIuS", expecting delay: %"PRId64,
- i, kBackoffDelaysInMs[i]));
+ SCOPED_TRACE(base::StringPrintf("Testing retry %" PRIuS
+ ", expecting delay: %" PRId64,
+ i,
+ kBackoffDelaysInMs[i]));
EXPECT_EQ(
kBackoffDelaysInMs[i],
whitelist_manager_->download_interval().InMillisecondsRoundedUp());
« no previous file with comments | « chrome/test/webdriver/http_response.cc ('k') | content/common/content_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698