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

Unified Diff: chrome/browser/media_gallery/media_galleries_preferences_unittest.cc

Issue 10911234: Update Windows System Monitor Removable Device Impl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Win compile Created 8 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: 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;
}
};

Powered by Google App Engine
This is Rietveld 408576698