| Index: chrome/browser/media_galleries/media_file_system_registry_unittest.cc
|
| diff --git a/chrome/browser/media_galleries/media_file_system_registry_unittest.cc b/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
|
| index 10db660818ae92265d2333e66d6aab0e638ea5de..f19d41b0f716d5a86ce8321b7112da0289f6bb9f 100644
|
| --- a/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
|
| +++ b/chrome/browser/media_galleries/media_file_system_registry_unittest.cc
|
| @@ -85,6 +85,9 @@ class TestMediaFileSystemContext : public MediaFileSystemContext {
|
| const std::string& device_id, const base::FilePath& path,
|
| scoped_refptr<ScopedMTPDeviceMapEntry>* entry) OVERRIDE;
|
|
|
| + virtual std::string RegisterFileSystemForPicasa(
|
| + const std::string& device_id, const base::FilePath& path) OVERRIDE;
|
| +
|
| virtual void RevokeFileSystem(const std::string& fsid) OVERRIDE;
|
|
|
| virtual MediaFileSystemRegistry* GetMediaFileSystemRegistry() OVERRIDE;
|
| @@ -142,6 +145,12 @@ std::string TestMediaFileSystemContext::RegisterFileSystemForMTPDevice(
|
| return AddFSEntry(device_id, path);
|
| }
|
|
|
| +std::string TestMediaFileSystemContext::RegisterFileSystemForPicasa(
|
| + const std::string& device_id, const base::FilePath& path) {
|
| + CHECK(!StorageInfo::IsMassStorageDevice(device_id));
|
| + return AddFSEntry(device_id, path);
|
| +}
|
| +
|
| void TestMediaFileSystemContext::RevokeFileSystem(const std::string& fsid) {
|
| if (!ContainsKey(file_systems_by_id_, fsid))
|
| return;
|
|
|