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

Unified Diff: chromeos/disks/disk_mount_manager.h

Issue 1540803002: Switch to standard integer types in chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes 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
« no previous file with comments | « chromeos/dbus/volume_state.h ('k') | chromeos/disks/disk_mount_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/disks/disk_mount_manager.h
diff --git a/chromeos/disks/disk_mount_manager.h b/chromeos/disks/disk_mount_manager.h
index ac21ad3ad46790a1e2fdb4837a3152bebd1408df..cf29e72c07bac82469a714e5bac6489bb5567f74 100644
--- a/chromeos/disks/disk_mount_manager.h
+++ b/chromeos/disks/disk_mount_manager.h
@@ -5,6 +5,8 @@
#ifndef CHROMEOS_DISKS_DISK_MOUNT_MANAGER_H_
#define CHROMEOS_DISKS_DISK_MOUNT_MANAGER_H_
+#include <stdint.h>
+
#include <map>
#include "base/callback_forward.h"
@@ -64,7 +66,7 @@ class CHROMEOS_EXPORT DiskMountManager {
const std::string& fs_uuid,
const std::string& system_path_prefix,
DeviceType device_type,
- uint64 total_size_in_bytes,
+ uint64_t total_size_in_bytes,
bool is_parent,
bool is_read_only,
bool has_media,
@@ -121,7 +123,7 @@ class CHROMEOS_EXPORT DiskMountManager {
DeviceType device_type() const { return device_type_; }
// Total size of the device in bytes.
- uint64 total_size_in_bytes() const { return total_size_in_bytes_; }
+ uint64_t total_size_in_bytes() const { return total_size_in_bytes_; }
// Is the device is a parent device (i.e. sdb rather than sdb1).
bool is_parent() const { return is_parent_; }
@@ -161,7 +163,7 @@ class CHROMEOS_EXPORT DiskMountManager {
std::string fs_uuid_;
std::string system_path_prefix_;
DeviceType device_type_;
- uint64 total_size_in_bytes_;
+ uint64_t total_size_in_bytes_;
bool is_parent_;
bool is_read_only_;
bool has_media_;
« no previous file with comments | « chromeos/dbus/volume_state.h ('k') | chromeos/disks/disk_mount_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698