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

Unified Diff: chrome/browser/sync_file_system/local/canned_syncable_file_system.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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/sync_file_system/local/canned_syncable_file_system.h
diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
index cb95f7a3135e018119a8d4c8036922ec7511bb2a..57bfa47f204cbe131d4a3ff4737a794412129161 100644
--- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
+++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.h
@@ -5,12 +5,15 @@
#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
#define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
#include "base/callback_forward.h"
#include "base/files/file.h"
#include "base/files/scoped_temp_dir.h"
+#include "base/macros.h"
#include "base/observer_list_threadsafe.h"
#include "chrome/browser/sync_file_system/local/local_file_sync_status.h"
#include "chrome/browser/sync_file_system/sync_status_code.h"
@@ -62,7 +65,7 @@ class CannedSyncableFileSystem
base::File::Error result)>
OpenFileSystemCallback;
typedef base::Callback<void(base::File::Error)> StatusCallback;
- typedef base::Callback<void(int64)> WriteCallback;
+ typedef base::Callback<void(int64_t)> WriteCallback;
typedef storage::FileSystemOperation::FileEntryList FileEntryList;
enum QuotaMode {
@@ -121,7 +124,8 @@ class CannedSyncableFileSystem
const storage::FileSystemURL& dest_url);
base::File::Error Move(const storage::FileSystemURL& src_url,
const storage::FileSystemURL& dest_url);
- base::File::Error TruncateFile(const storage::FileSystemURL& url, int64 size);
+ base::File::Error TruncateFile(const storage::FileSystemURL& url,
+ int64_t size);
base::File::Error TouchFile(const storage::FileSystemURL& url,
const base::Time& last_access_time,
const base::Time& last_modified_time);
@@ -138,16 +142,17 @@ class CannedSyncableFileSystem
FileEntryList* entries);
// Returns the # of bytes written (>=0) or an error code (<0).
- int64 Write(net::URLRequestContext* url_request_context,
- const storage::FileSystemURL& url,
- scoped_ptr<storage::BlobDataHandle> blob_data_handle);
- int64 WriteString(const storage::FileSystemURL& url, const std::string& data);
+ int64_t Write(net::URLRequestContext* url_request_context,
+ const storage::FileSystemURL& url,
+ scoped_ptr<storage::BlobDataHandle> blob_data_handle);
+ int64_t WriteString(const storage::FileSystemURL& url,
+ const std::string& data);
// Purges the file system local storage.
base::File::Error DeleteFileSystem();
// Retrieves the quota and usage.
- storage::QuotaStatusCode GetUsageAndQuota(int64* usage, int64* quota);
+ storage::QuotaStatusCode GetUsageAndQuota(int64_t* usage, int64_t* quota);
// ChangeTracker related methods. They run on file task runner.
void GetChangedURLsInTracker(storage::FileSystemURLSet* urls);
@@ -176,7 +181,7 @@ class CannedSyncableFileSystem
const storage::FileSystemURL& dest_url,
const StatusCallback& callback);
void DoTruncateFile(const storage::FileSystemURL& url,
- int64 size,
+ int64_t size,
const StatusCallback& callback);
void DoTouchFile(const storage::FileSystemURL& url,
const base::Time& last_access_time,
@@ -206,8 +211,8 @@ class CannedSyncableFileSystem
void DoWriteString(const storage::FileSystemURL& url,
const std::string& data,
const WriteCallback& callback);
- void DoGetUsageAndQuota(int64* usage,
- int64* quota,
+ void DoGetUsageAndQuota(int64_t* usage,
+ int64_t* quota,
const storage::StatusCallback& callback);
private:

Powered by Google App Engine
This is Rietveld 408576698