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

Unified Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.h

Issue 1550503002: Switch to standard integer types in base/threading/. (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: components/storage_monitor/test_media_transfer_protocol_manager_linux.h
diff --git a/components/storage_monitor/test_media_transfer_protocol_manager_linux.h b/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
index 0a2bb4f8d216485e285a83c32b4bcb4296e712aa..a3916394ea0c89fefb50c0bf97f2c6a64892adb4 100644
--- a/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
+++ b/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_
#define COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_
+#include <stdint.h>
+
#include "device/media_transfer_protocol/media_transfer_protocol_manager.h"
namespace storage_monitor {
@@ -32,32 +34,32 @@ class TestMediaTransferProtocolManagerLinux
void CloseStorage(const std::string& storage_handle,
const CloseStorageCallback& callback) override;
void CreateDirectory(const std::string& storage_handle,
- const uint32 parent_id,
+ const uint32_t parent_id,
const std::string& directory_name,
const CreateDirectoryCallback& callback) override;
void ReadDirectory(const std::string& storage_handle,
- const uint32 file_id,
+ const uint32_t file_id,
const size_t max_size,
const ReadDirectoryCallback& callback) override;
void ReadFileChunk(const std::string& storage_handle,
- uint32 file_id,
- uint32 offset,
- uint32 count,
+ uint32_t file_id,
+ uint32_t offset,
+ uint32_t count,
const ReadFileCallback& callback) override;
void GetFileInfo(const std::string& storage_handle,
- uint32 file_id,
+ uint32_t file_id,
const GetFileInfoCallback& callback) override;
void RenameObject(const std::string& storage_handle,
- const uint32 object_id,
+ const uint32_t object_id,
const std::string& new_name,
const RenameObjectCallback& callback) override;
void CopyFileFromLocal(const std::string& storage_handle,
const int source_file_descriptor,
- const uint32 parent_id,
+ const uint32_t parent_id,
const std::string& file_name,
const CopyFileFromLocalCallback& callback) override;
void DeleteObject(const std::string& storage_handle,
- const uint32 object_id,
+ const uint32_t object_id,
const DeleteObjectCallback& callback) override;
DISALLOW_COPY_AND_ASSIGN(TestMediaTransferProtocolManagerLinux);

Powered by Google App Engine
This is Rietveld 408576698