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

Unified Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.h

Issue 2358493002: Remove MTP support on Linux. (Closed)
Patch Set: move files Created 4 years, 3 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
deleted file mode 100644
index c53b39c9915f3a7c4022963cb6dfff84732d9005..0000000000000000000000000000000000000000
--- a/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_
-#define COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_
-
-#include <stddef.h>
-#include <stdint.h>
-
-#include "base/macros.h"
-#include "device/media_transfer_protocol/media_transfer_protocol_manager.h"
-
-namespace storage_monitor {
-
-// A dummy MediaTransferProtocolManager implementation.
-class TestMediaTransferProtocolManagerLinux
- : public device::MediaTransferProtocolManager {
- public:
- TestMediaTransferProtocolManagerLinux();
- ~TestMediaTransferProtocolManagerLinux() override;
-
- private:
- // device::MediaTransferProtocolManager implementation.
- void AddObserver(Observer* observer) override;
- void RemoveObserver(Observer* observer) override;
- const std::vector<std::string> GetStorages() const override;
- const MtpStorageInfo* GetStorageInfo(
- const std::string& storage_name) const override;
- void GetStorageInfoFromDevice(
- const std::string& storage_name,
- const GetStorageInfoFromDeviceCallback& callback) override;
- void OpenStorage(const std::string& storage_name,
- const std::string& mode,
- const OpenStorageCallback& callback) override;
- void CloseStorage(const std::string& storage_handle,
- const CloseStorageCallback& callback) override;
- void CreateDirectory(const std::string& storage_handle,
- const uint32_t parent_id,
- const std::string& directory_name,
- const CreateDirectoryCallback& callback) override;
- void ReadDirectory(const std::string& storage_handle,
- const uint32_t file_id,
- const size_t max_size,
- const ReadDirectoryCallback& callback) override;
- void ReadFileChunk(const std::string& storage_handle,
- uint32_t file_id,
- uint32_t offset,
- uint32_t count,
- const ReadFileCallback& callback) override;
- void GetFileInfo(const std::string& storage_handle,
- uint32_t file_id,
- const GetFileInfoCallback& callback) override;
- void RenameObject(const std::string& storage_handle,
- 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_t parent_id,
- const std::string& file_name,
- const CopyFileFromLocalCallback& callback) override;
- void DeleteObject(const std::string& storage_handle,
- const uint32_t object_id,
- const DeleteObjectCallback& callback) override;
-
- DISALLOW_COPY_AND_ASSIGN(TestMediaTransferProtocolManagerLinux);
-};
-
-} // namespace storage_monitor
-
-#endif // COMPONENTS_STORAGE_MONITOR_TEST_MEDIA_TRANSFER_PROTOCOL_MANAGER_LINUX_H_

Powered by Google App Engine
This is Rietveld 408576698