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

Unified Diff: content/browser/download/save_types.h

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
« no previous file with comments | « content/browser/download/save_package_unittest.cc ('k') | content/browser/download/save_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/save_types.h
diff --git a/content/browser/download/save_types.h b/content/browser/download/save_types.h
index c7da3bd563f2608e74700f3b5bfeb205653808fe..803196fc4269db6b96a32bc36b9d21a95f38dd88 100644
--- a/content/browser/download/save_types.h
+++ b/content/browser/download/save_types.h
@@ -5,12 +5,13 @@
#ifndef CONTENT_BROWSER_DOWNLOAD_SAVE_TYPES_H_
#define CONTENT_BROWSER_DOWNLOAD_SAVE_TYPES_H_
+#include <stdint.h>
+
#include <map>
#include <string>
#include <utility>
#include <vector>
-#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "url/gurl.h"
@@ -53,7 +54,7 @@ struct SaveFileCreateInfo {
int render_frame_routing_id,
int request_id,
const std::string& content_disposition,
- int64 total_bytes);
+ int64_t total_bytes);
~SaveFileCreateInfo();
@@ -76,7 +77,7 @@ struct SaveFileCreateInfo {
// Disposition info from HTTP response.
std::string content_disposition;
// Total bytes of saved file.
- int64 total_bytes;
+ int64_t total_bytes;
// Source type of saved file.
SaveFileSource save_source;
};
« no previous file with comments | « content/browser/download/save_package_unittest.cc ('k') | content/browser/download/save_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698