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

Unified Diff: components/search_provider_logos/logo_common.h

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/search_provider_logos/logo_common.h
diff --git a/components/search_provider_logos/logo_common.h b/components/search_provider_logos/logo_common.h
index 86b5700fa865dc9c5638cc4278b4a5901a1b9977..36577e730a71f6f6e8f3215c0ea0efb23d198abf 100644
--- a/components/search_provider_logos/logo_common.h
+++ b/components/search_provider_logos/logo_common.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_SEARCH_PROVIDER_LOGOS_LOGO_COMMON_H_
#define COMPONENTS_SEARCH_PROVIDER_LOGOS_LOGO_COMMON_H_
+#include <stdint.h>
+
#include <string>
#include "base/memory/ref_counted.h"
@@ -15,7 +17,7 @@
namespace search_provider_logos {
// The maximum number of milliseconds that a logo can be cached.
-extern const int64 kMaxTimeToLiveMS;
+extern const int64_t kMaxTimeToLiveMS;
struct LogoMetadata {
LogoMetadata();
« no previous file with comments | « components/search_provider_logos/logo_cache_unittest.cc ('k') | components/search_provider_logos/logo_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698