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

Unified Diff: chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac_unittest.mm

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (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: chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac_unittest.mm
diff --git a/chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac_unittest.mm b/chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac_unittest.mm
index 17c23adeb1f8acc57ce61964ffea5b7728d853bb..b32235b14f09f3410a9c64cbfb296cd1ccf8986b 100644
--- a/chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac_unittest.mm
+++ b/chrome/browser/media_galleries/mac/mtp_device_delegate_impl_mac_unittest.mm
@@ -203,7 +203,7 @@ class MTPDeviceDelegateImplMacTest : public testing::Test {
}
void OnReadDir(base::WaitableEvent* event,
- const fileapi::AsyncFileUtil::EntryList& files,
+ const storage::AsyncFileUtil::EntryList& files,
bool has_more) {
error_ = base::File::FILE_OK;
ASSERT_FALSE(has_more);
@@ -212,7 +212,7 @@ class MTPDeviceDelegateImplMacTest : public testing::Test {
}
void OverlappedOnReadDir(base::WaitableEvent* event,
- const fileapi::AsyncFileUtil::EntryList& files,
+ const storage::AsyncFileUtil::EntryList& files,
bool has_more) {
overlapped_error_ = base::File::FILE_OK;
ASSERT_FALSE(has_more);
@@ -294,10 +294,10 @@ class MTPDeviceDelegateImplMacTest : public testing::Test {
base::File::Error error_;
base::File::Info info_;
- fileapi::AsyncFileUtil::EntryList file_list_;
+ storage::AsyncFileUtil::EntryList file_list_;
base::File::Error overlapped_error_;
- fileapi::AsyncFileUtil::EntryList overlapped_file_list_;
+ storage::AsyncFileUtil::EntryList overlapped_file_list_;
private:
DISALLOW_COPY_AND_ASSIGN(MTPDeviceDelegateImplMacTest);

Powered by Google App Engine
This is Rietveld 408576698