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

Unified Diff: components/favicon_base/favicon_types.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/favicon_base/favicon_types.h
diff --git a/components/favicon_base/favicon_types.h b/components/favicon_base/favicon_types.h
index 469d0fa10b9890fee0cb5a83dc0aa2d71e8999a7..8859f64a2aa46f6e309b8ed1b4a51c8e1d7c83f9 100644
--- a/components/favicon_base/favicon_types.h
+++ b/components/favicon_base/favicon_types.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_FAVICON_BASE_FAVICON_TYPES_H_
#define COMPONENTS_FAVICON_BASE_FAVICON_TYPES_H_
+#include <stdint.h>
+
#include "base/memory/ref_counted_memory.h"
#include "base/memory/scoped_ptr.h"
#include "ui/gfx/geometry/size.h"
@@ -15,7 +17,7 @@ namespace favicon_base {
struct FallbackIconStyle;
-typedef int64 FaviconID;
+typedef int64_t FaviconID;
// Defines the icon types. They are also stored in icon_type field of favicons
// table.
« no previous file with comments | « components/favicon_base/fallback_icon_url_parser_unittest.cc ('k') | components/favicon_base/favicon_url_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698