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

Unified Diff: components/sessions/core/serialized_navigation_entry_test_helper.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years 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: components/sessions/core/serialized_navigation_entry_test_helper.cc
diff --git a/components/sessions/core/serialized_navigation_entry_test_helper.cc b/components/sessions/core/serialized_navigation_entry_test_helper.cc
index 6d41e8aa93f21ab19688a04ab5577fbf58d3e3be..638ffce4d1a861636bf29135f9727e70b4917ff9 100644
--- a/components/sessions/core/serialized_navigation_entry_test_helper.cc
+++ b/components/sessions/core/serialized_navigation_entry_test_helper.cc
@@ -28,7 +28,7 @@ const ui::PageTransition kTransitionType =
ui::PAGE_TRANSITION_HOME_PAGE |
ui::PAGE_TRANSITION_CLIENT_REDIRECT);
const bool kHasPostData = true;
-const int64 kPostID = 100;
+const int64_t kPostID = 100;
const GURL kOriginalRequestURL = GURL("http://www.original-request.com");
const bool kIsOverridingUserAgent = true;
const base::Time kTimestamp = syncer::ProtoTimeToTime(100);

Powered by Google App Engine
This is Rietveld 408576698