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

Side by Side Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.h

Issue 947943002: Implement CopyFileFromLocal of MTPDeviceAsyncDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_ 5 #ifndef COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_
6 #define COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_ 6 #define COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_
7 7
8 #include "device/media_transfer_protocol/media_transfer_protocol_manager.h" 8 #include "device/media_transfer_protocol/media_transfer_protocol_manager.h"
9 9
10 namespace storage_monitor { 10 namespace storage_monitor {
(...skipping 21 matching lines...) Expand all
32 uint32 file_id, 32 uint32 file_id,
33 const ReadDirectoryCallback& callback) override; 33 const ReadDirectoryCallback& callback) override;
34 void ReadFileChunk(const std::string& storage_handle, 34 void ReadFileChunk(const std::string& storage_handle,
35 uint32 file_id, 35 uint32 file_id,
36 uint32 offset, 36 uint32 offset,
37 uint32 count, 37 uint32 count,
38 const ReadFileCallback& callback) override; 38 const ReadFileCallback& callback) override;
39 void GetFileInfo(const std::string& storage_handle, 39 void GetFileInfo(const std::string& storage_handle,
40 uint32 file_id, 40 uint32 file_id,
41 const GetFileInfoCallback& callback) override; 41 const GetFileInfoCallback& callback) override;
42 void CopyFileFromLocal(const std::string& storage_handle,
43 const int source_file_descriptor,
44 const uint32 parent_id,
45 const std::string& file_name,
46 const CopyFileFromLocalCallback& callback) override;
42 47
43 DISALLOW_COPY_AND_ASSIGN(TestMediaTransferProtocolManagerLinux); 48 DISALLOW_COPY_AND_ASSIGN(TestMediaTransferProtocolManagerLinux);
44 }; 49 };
45 50
46 } // namespace storage_monitor 51 } // namespace storage_monitor
47 52
48 #endif // COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX _H_ 53 #endif // COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698