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

Unified Diff: content/browser/web_contents/web_contents_view_aura.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: content/browser/web_contents/web_contents_view_aura.cc
diff --git a/content/browser/web_contents/web_contents_view_aura.cc b/content/browser/web_contents/web_contents_view_aura.cc
index 2201cd0505018b1f5bbf0fb9da8d829d38f1f995..41ef84fd37b6512adc528831fee8345ae8fc2249 100644
--- a/content/browser/web_contents/web_contents_view_aura.cc
+++ b/content/browser/web_contents/web_contents_view_aura.cc
@@ -4,10 +4,15 @@
#include "content/browser/web_contents/web_contents_view_aura.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include "base/auto_reset.h"
#include "base/command_line.h"
#include "base/files/file_util.h"
+#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
+#include "build/build_config.h"
#include "content/browser/browser_plugin/browser_plugin_guest.h"
#include "content/browser/download/drag_download_util.h"
#include "content/browser/frame_host/interstitial_page_impl.h"
@@ -251,7 +256,7 @@ bool ReadFileSystemFilesFromPickle(
for (size_t i = 0; i < num_files; ++i) {
std::string url_string;
- int64 size = 0;
+ int64_t size = 0;
if (!iter.ReadString(&url_string) || !iter.ReadInt64(&size))
return false;

Powered by Google App Engine
This is Rietveld 408576698