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

Unified Diff: chromeos/disks/disk_mount_manager.cc

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/disks/disk_mount_manager.h ('k') | chromeos/disks/disk_mount_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/disks/disk_mount_manager.cc
diff --git a/chromeos/disks/disk_mount_manager.cc b/chromeos/disks/disk_mount_manager.cc
index e947eb772b518ed9e89aecf716217933ad37f270..3c89ac6fa05863224c8a927630b5a627208f6e05 100644
--- a/chromeos/disks/disk_mount_manager.cc
+++ b/chromeos/disks/disk_mount_manager.cc
@@ -4,9 +4,13 @@
#include "chromeos/disks/disk_mount_manager.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <set>
#include "base/bind.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/stl_util.h"
@@ -651,7 +655,7 @@ DiskMountManager::Disk::Disk(const std::string& device_path,
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,
@@ -677,8 +681,7 @@ DiskMountManager::Disk::Disk(const std::string& device_path,
has_media_(has_media),
on_boot_device_(on_boot_device),
on_removable_device_(on_removable_device),
- is_hidden_(is_hidden) {
-}
+ is_hidden_(is_hidden) {}
DiskMountManager::Disk::~Disk() {}
« no previous file with comments | « chromeos/disks/disk_mount_manager.h ('k') | chromeos/disks/disk_mount_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698