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

Unified Diff: chrome/browser/media_galleries/fileapi/media_path_filter.h

Issue 15653004: Picasa import: Make NativeMediaFileUtil an AsyncFileUtil (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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/fileapi/media_path_filter.h
diff --git a/chrome/browser/media_galleries/fileapi/media_path_filter.h b/chrome/browser/media_galleries/fileapi/media_path_filter.h
index c74d4d390a500b743b63f4b8d2c7c63b751c2dcc..59d66f74dcde35999cb6d4bec5dd58f3dd980529 100644
--- a/chrome/browser/media_galleries/fileapi/media_path_filter.h
+++ b/chrome/browser/media_galleries/fileapi/media_path_filter.h
@@ -10,10 +10,6 @@
#include "base/files/file_path.h"
#include "base/synchronization/lock.h"
-namespace base {
-class FilePath;
-}
-
namespace chrome {
// This class holds the list of file path extensions that we should expose on
@@ -22,7 +18,7 @@ class MediaPathFilter {
public:
MediaPathFilter();
~MediaPathFilter();
- bool Match(const base::FilePath& path);
+ bool Match(const base::FilePath::StringType& base_name);
private:
typedef std::vector<base::FilePath::StringType> MediaFileExtensionList;

Powered by Google App Engine
This is Rietveld 408576698