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

Unified Diff: chrome/browser/extensions/blob_reader.h

Issue 1498003003: Remove kint64max. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: INT64_MAX 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 | « base/sys_info_win.cc ('k') | chrome/browser/extensions/blob_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/blob_reader.h
diff --git a/chrome/browser/extensions/blob_reader.h b/chrome/browser/extensions/blob_reader.h
index bc50037706cc2ac720a55c72ab544e5b4ec1d568..0e0c2d2f69c5514d1c702bf2015741797e6f7414 100644
--- a/chrome/browser/extensions/blob_reader.h
+++ b/chrome/browser/extensions/blob_reader.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_EXTENSIONS_BLOB_READER_H_
#define CHROME_BROWSER_EXTENSIONS_BLOB_READER_H_
+#include <stdint.h>
+
#include <string>
#include "base/callback.h"
@@ -26,15 +28,14 @@ class BlobReader : public net::URLFetcherDelegate {
// is the total size of the Blob, and may be larger than |blob_data->size()|.
// |blob_total_size| is -1 if it cannot be determined.
typedef base::Callback<void(scoped_ptr<std::string> blob_data,
- int64 blob_total_size)>
- BlobReadCallback;
+ int64_t blob_total_size)> BlobReadCallback;
BlobReader(Profile* profile,
const std::string& blob_uuid,
BlobReadCallback callback);
~BlobReader() override;
- void SetByteRange(int64 offset, int64 length);
+ void SetByteRange(int64_t offset, int64_t length);
void Start();
« no previous file with comments | « base/sys_info_win.cc ('k') | chrome/browser/extensions/blob_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698