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

Unified Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.h

Issue 982283002: Implement DeleteFile and DeleteDirectory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 5 years, 9 months 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 51d44c998a047003ca55ea268f3996dd4b24eab0..df20bb68d0e3dc8ee8b728c41a1f355af3979f82 100644
--- a/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
+++ b/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
@@ -29,7 +29,8 @@ class TestMediaTransferProtocolManagerLinux
void CloseStorage(const std::string& storage_handle,
const CloseStorageCallback& callback) override;
void ReadDirectory(const std::string& storage_handle,
- uint32 file_id,
+ const uint32 file_id,
+ const size_t max_size,
const ReadDirectoryCallback& callback) override;
void ReadFileChunk(const std::string& storage_handle,
uint32 file_id,
@@ -44,6 +45,9 @@ class TestMediaTransferProtocolManagerLinux
const uint32 parent_id,
const std::string& file_name,
const CopyFileFromLocalCallback& callback) override;
+ void DeleteObject(const std::string& storage_handle,
+ const uint32 object_id,
+ const DeleteObjectCallback& callback) override;
DISALLOW_COPY_AND_ASSIGN(TestMediaTransferProtocolManagerLinux);
};

Powered by Google App Engine
This is Rietveld 408576698