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

Unified Diff: chrome/utility/media_galleries/iapps_xml_utils.h

Issue 1548153002: Switch to standard integer types in chrome/. (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: chrome/utility/media_galleries/iapps_xml_utils.h
diff --git a/chrome/utility/media_galleries/iapps_xml_utils.h b/chrome/utility/media_galleries/iapps_xml_utils.h
index d451878e9e001014a188de4327698ea2dda86fee..d0b20c5cd8a60b980e26c58ce288db82a6eb4f22 100644
--- a/chrome/utility/media_galleries/iapps_xml_utils.h
+++ b/chrome/utility/media_galleries/iapps_xml_utils.h
@@ -5,10 +5,13 @@
#ifndef CHROME_UTILITY_MEDIA_GALLERIES_IAPPS_XML_UTILS_H_
#define CHROME_UTILITY_MEDIA_GALLERIES_IAPPS_XML_UTILS_H_
+#include <stdint.h>
+
#include <set>
#include <string>
#include "base/files/file.h"
+#include "base/macros.h"
#include "base/stl_util.h"
class XmlReader;
@@ -31,7 +34,7 @@ bool SeekInDict(XmlReader* reader, const std::string& key);
bool ReadString(XmlReader* reader, std::string* result);
// Get the value out of an integer node.
-bool ReadInteger(XmlReader* reader, uint64* result);
+bool ReadInteger(XmlReader* reader, uint64_t* result);
// Read in the contents of the given library xml |file| and return as a string.
std::string ReadFileAsString(base::File file);
« no previous file with comments | « chrome/utility/local_discovery/service_discovery_message_handler.cc ('k') | chrome/utility/media_galleries/iapps_xml_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698