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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/write_file.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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/browser/chromeos/file_system_provider/operations/write_file.h
diff --git a/chrome/browser/chromeos/file_system_provider/operations/write_file.h b/chrome/browser/chromeos/file_system_provider/operations/write_file.h
index c9b220fbb001192bf3725168063ad25360c5a872..5e50fb86c62f037063f034b00f990341981969bf 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/write_file.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/write_file.h
@@ -5,7 +5,10 @@
#ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_WRITE_FILE_H_
#define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_WRITE_FILE_H_
+#include <stdint.h>
+
#include "base/files/file.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
@@ -36,7 +39,7 @@ class WriteFile : public Operation {
const ProvidedFileSystemInfo& file_system_info,
int file_handle,
scoped_refptr<net::IOBuffer> buffer,
- int64 offset,
+ int64_t offset,
int length,
const storage::AsyncFileUtil::StatusCallback& callback);
~WriteFile() override;
@@ -53,7 +56,7 @@ class WriteFile : public Operation {
private:
int file_handle_;
scoped_refptr<net::IOBuffer> buffer_;
- int64 offset_;
+ int64_t offset_;
int length_;
const storage::AsyncFileUtil::StatusCallback callback_;

Powered by Google App Engine
This is Rietveld 408576698