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

Unified Diff: components/storage_monitor/storage_monitor_mac_unittest.mm

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (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
« no previous file with comments | « components/storage_monitor/storage_monitor_mac.mm ('k') | components/storage_monitor/storage_monitor_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/storage_monitor/storage_monitor_mac_unittest.mm
diff --git a/components/storage_monitor/storage_monitor_mac_unittest.mm b/components/storage_monitor/storage_monitor_mac_unittest.mm
index 57ef88f8a0b82217cfbaeb23367b0e4fcac455e5..1b10d178c81ebc4bcf89df13d38a23efa888b274 100644
--- a/components/storage_monitor/storage_monitor_mac_unittest.mm
+++ b/components/storage_monitor/storage_monitor_mac_unittest.mm
@@ -4,6 +4,8 @@
#include "components/storage_monitor/storage_monitor_mac.h"
+#include <stdint.h>
+
#include "base/bind_helpers.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
@@ -19,17 +21,16 @@
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gtest/include/gtest/gtest.h"
-uint64 kTestSize = 1000000ULL;
+uint64_t kTestSize = 1000000ULL;
namespace storage_monitor {
namespace {
-StorageInfo CreateStorageInfo(
- const std::string& device_id,
- const std::string& model_name,
- const base::FilePath& mount_point,
- uint64 size_bytes) {
+StorageInfo CreateStorageInfo(const std::string& device_id,
+ const std::string& model_name,
+ const base::FilePath& mount_point,
+ uint64_t size_bytes) {
return StorageInfo(
device_id, mount_point.value(), base::string16(), base::string16(),
base::UTF8ToUTF16(model_name), size_bytes);
« no previous file with comments | « components/storage_monitor/storage_monitor_mac.mm ('k') | components/storage_monitor/storage_monitor_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698