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

Unified Diff: components/history/core/common/thumbnail_score.h

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn 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/history/core/common/thumbnail_score.h
diff --git a/components/history/core/common/thumbnail_score.h b/components/history/core/common/thumbnail_score.h
index 22ef236a0d3ee8cd06b9063edd60f0923b97cea8..2e7dfffdeb437f8e325a15807c9261688ed7de8d 100644
--- a/components/history/core/common/thumbnail_score.h
+++ b/components/history/core/common/thumbnail_score.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_HISTORY_CORE_COMMON_THUMBNAIL_SCORE_H_
#define COMPONENTS_HISTORY_CORE_COMMON_THUMBNAIL_SCORE_H_
+#include <stdint.h>
+
#include <string>
#include "base/time/time.h"
@@ -89,7 +91,7 @@ struct ThumbnailScore {
// Time before we take a worse thumbnail (subject to
// kThumbnailMaximumBoringness) over what's currently in the database
// for freshness.
- static const int64 kUpdateThumbnailTimeDays;
+ static const int64_t kUpdateThumbnailTimeDays;
// Penalty of how much more boring a thumbnail should be per hour.
static const double kThumbnailDegradePerHour;
« no previous file with comments | « components/history/core/browser/web_history_service.h ('k') | components/history/core/common/thumbnail_score.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698