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

Unified Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.cc

Issue 947943002: Implement CopyFileFromLocal of MTPDeviceAsyncDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 10 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.cc
diff --git a/components/storage_monitor/test_media_transfer_protocol_manager_linux.cc b/components/storage_monitor/test_media_transfer_protocol_manager_linux.cc
index 42736db5f32e0453188651401bb11f9025e0de5c..572c626f8b0aebef438f59a67aac774640bbbe8f 100644
--- a/components/storage_monitor/test_media_transfer_protocol_manager_linux.cc
+++ b/components/storage_monitor/test_media_transfer_protocol_manager_linux.cc
@@ -66,4 +66,13 @@ void TestMediaTransferProtocolManagerLinux::GetFileInfo(
callback.Run(MtpFileEntry(), true);
}
+void TestMediaTransferProtocolManagerLinux::CopyFileFromLocal(
+ const std::string& storage_handle,
+ const int source_file_descriptor,
+ const uint32 parent_id,
+ const std::string& file_name,
+ const CopyFileFromLocalCallback& callback) {
+ callback.Run(true /* error */);
+}
+
} // namespace storage_monitor

Powered by Google App Engine
This is Rietveld 408576698