| Index: chrome/browser/media_gallery/media_galleries_preferences_unittest.cc
|
| diff --git a/chrome/browser/media_gallery/media_galleries_preferences_unittest.cc b/chrome/browser/media_gallery/media_galleries_preferences_unittest.cc
|
| index 8f3b57484a0a2296a6dd1594f9e82a75d6cb8e84..31aa199d9f369b8f673c5a1d86f84555d08d92ad 100644
|
| --- a/chrome/browser/media_gallery/media_galleries_preferences_unittest.cc
|
| +++ b/chrome/browser/media_gallery/media_galleries_preferences_unittest.cc
|
| @@ -36,7 +36,7 @@ class MediaStorageUtilTest : public MediaStorageUtil {
|
| &GetDeviceInfoFromPathTestFunction);
|
| }
|
|
|
| - static void GetDeviceInfoFromPathTestFunction(const FilePath& path,
|
| + static bool GetDeviceInfoFromPathTestFunction(const FilePath& path,
|
| std::string* device_id,
|
| string16* device_name,
|
| FilePath* relative_path) {
|
| @@ -46,6 +46,7 @@ class MediaStorageUtilTest : public MediaStorageUtil {
|
| *device_name = path.BaseName().LossyDisplayName();
|
| if (relative_path)
|
| *relative_path = FilePath();
|
| + return true;
|
| }
|
| };
|
|
|
|
|