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

Unified Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.cc

Issue 437313002: Media Galleries: Omit ById in various method names, since all operations are now by id. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 5b6437546c9cd2d320335c8eaf623d2ee58a43c7..42736db5f32e0453188651401bb11f9025e0de5c 100644
--- a/components/storage_monitor/test_media_transfer_protocol_manager_linux.cc
+++ b/components/storage_monitor/test_media_transfer_protocol_manager_linux.cc
@@ -41,7 +41,7 @@ void TestMediaTransferProtocolManagerLinux::CloseStorage(
callback.Run(true);
}
-void TestMediaTransferProtocolManagerLinux::ReadDirectoryById(
+void TestMediaTransferProtocolManagerLinux::ReadDirectory(
const std::string& storage_handle,
uint32 file_id,
const ReadDirectoryCallback& callback) {
@@ -50,7 +50,7 @@ void TestMediaTransferProtocolManagerLinux::ReadDirectoryById(
true /* error */);
}
-void TestMediaTransferProtocolManagerLinux::ReadFileChunkById(
+void TestMediaTransferProtocolManagerLinux::ReadFileChunk(
const std::string& storage_handle,
uint32 file_id,
uint32 offset,
@@ -59,7 +59,7 @@ void TestMediaTransferProtocolManagerLinux::ReadFileChunkById(
callback.Run(std::string(), true);
}
-void TestMediaTransferProtocolManagerLinux::GetFileInfoById(
+void TestMediaTransferProtocolManagerLinux::GetFileInfo(
const std::string& storage_handle,
uint32 file_id,
const GetFileInfoCallback& callback) {

Powered by Google App Engine
This is Rietveld 408576698