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

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_file_system.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/extensions/file_manager/private_api_file_system.h
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
index 835b7f7974aae651fda5bd0d7fe4503ca1211458..7def0a770a2100c0bdb9dc3f87739b998df0963e 100644
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_file_system.h
@@ -7,8 +7,12 @@
#ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYSTEM_H_
#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_FILE_SYSTEM_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
+#include "base/macros.h"
#include "chrome/browser/chromeos/extensions/file_manager/private_api_base.h"
#include "chrome/browser/extensions/chrome_extension_function.h"
#include "chrome/browser/extensions/chrome_extension_function_details.h"
@@ -156,13 +160,14 @@ class FileManagerPrivateGetSizeStatsFunction
bool is_download);
void OnGetDriveAvailableSpace(drive::FileError error,
- int64 bytes_total,
- int64 bytes_used);
+ int64_t bytes_total,
+ int64_t bytes_used);
void OnGetMtpAvailableSpace(const MtpStorageInfo& mtp_storage_info,
const bool error);
- void OnGetSizeStats(const uint64* total_size, const uint64* remaining_size);
+ void OnGetSizeStats(const uint64_t* total_size,
+ const uint64_t* remaining_size);
};
// Implements the chrome.fileManagerPrivate.validatePathNameLength method.

Powered by Google App Engine
This is Rietveld 408576698