summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search/suggestions/suggestions_source.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/search/suggestions/suggestions_source.cc')
-rw-r--r--chrome/browser/search/suggestions/suggestions_source.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/search/suggestions/suggestions_source.cc b/chrome/browser/search/suggestions/suggestions_source.cc
index 79ea0be..1442a5a 100644
--- a/chrome/browser/search/suggestions/suggestions_source.cc
+++ b/chrome/browser/search/suggestions/suggestions_source.cc
@@ -4,6 +4,9 @@
#include "chrome/browser/search/suggestions/suggestions_source.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <vector>
#include "base/barrier_closure.h"
@@ -48,8 +51,8 @@ void RenderOutputHtml(const SuggestionsProfile& profile,
out.push_back(kHtmlBody);
out.push_back("<h1>Suggestions</h1>\n<ul>");
- int64 now = (base::Time::NowFromSystemTime() - base::Time::UnixEpoch())
- .ToInternalValue();
+ int64_t now = (base::Time::NowFromSystemTime() - base::Time::UnixEpoch())
+ .ToInternalValue();
size_t size = profile.suggestions_size();
for (size_t i = 0; i < size; ++i) {
const ChromeSuggestion& suggestion = profile.suggestions(i);