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

Unified Diff: chrome/browser/chromeos/file_manager/snapshot_manager.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_manager/snapshot_manager.h
diff --git a/chrome/browser/chromeos/file_manager/snapshot_manager.h b/chrome/browser/chromeos/file_manager/snapshot_manager.h
index bf6486e4ce66f5f3c1d1c7cff9d5edf280316562..5525afcac33b6f713b7a6ba7a3e5c7b812a69438 100644
--- a/chrome/browser/chromeos/file_manager/snapshot_manager.h
+++ b/chrome/browser/chromeos/file_manager/snapshot_manager.h
@@ -5,10 +5,13 @@
#ifndef CHROME_BROWSER_CHROMEOS_FILE_MANAGER_SNAPSHOT_MANAGER_H_
#define CHROME_BROWSER_CHROMEOS_FILE_MANAGER_SNAPSHOT_MANAGER_H_
+#include <stdint.h>
+
#include <deque>
#include "base/callback_forward.h"
#include "base/files/file.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
@@ -50,10 +53,10 @@ class SnapshotManager {
struct FileReferenceWithSizeInfo {
FileReferenceWithSizeInfo(
scoped_refptr<storage::ShareableFileReference> ref,
- int64 size);
+ int64_t size);
~FileReferenceWithSizeInfo();
scoped_refptr<storage::ShareableFileReference> file_ref;
- int64 file_size;
+ int64_t file_size;
};
private:
@@ -61,7 +64,7 @@ class SnapshotManager {
void CreateManagedSnapshotAfterSpaceComputed(
const storage::FileSystemURL& filesystem_url,
const LocalPathCallback& callback,
- int64 needed_space);
+ int64_t needed_space);
// Part of CreateManagedSnapshot.
void OnCreateSnapshotFile(
« no previous file with comments | « chrome/browser/chromeos/file_manager/open_with_browser.cc ('k') | chrome/browser/chromeos/file_manager/snapshot_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698