| 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();
|
|
|
|
|