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

Unified Diff: webkit/fileapi/media/media_path_filter.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « webkit/fileapi/media/filtering_file_enumerator.cc ('k') | webkit/fileapi/media/media_path_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/media/media_path_filter.h
diff --git a/webkit/fileapi/media/media_path_filter.h b/webkit/fileapi/media/media_path_filter.h
index 9079b8def6cfb86419836f4981816a3688f69337..694be4ea76dd4c5a884cc83a6c4801d8037fa5a1 100644
--- a/webkit/fileapi/media/media_path_filter.h
+++ b/webkit/fileapi/media/media_path_filter.h
@@ -11,7 +11,9 @@
#include "base/synchronization/lock.h"
#include "webkit/storage/webkit_storage_export.h"
+namespace base {
class FilePath;
+}
namespace fileapi {
@@ -21,10 +23,10 @@ class WEBKIT_STORAGE_EXPORT MediaPathFilter {
public:
MediaPathFilter();
~MediaPathFilter();
- bool Match(const FilePath& path);
+ bool Match(const base::FilePath& path);
private:
- typedef std::vector<FilePath::StringType> MediaFileExtensionList;
+ typedef std::vector<base::FilePath::StringType> MediaFileExtensionList;
void EnsureInitialized();
« no previous file with comments | « webkit/fileapi/media/filtering_file_enumerator.cc ('k') | webkit/fileapi/media/media_path_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698