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

Unified Diff: webkit/fileapi/isolated_mount_point_provider.h

Issue 10825042: Implement media path filter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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: webkit/fileapi/isolated_mount_point_provider.h
diff --git a/webkit/fileapi/isolated_mount_point_provider.h b/webkit/fileapi/isolated_mount_point_provider.h
index fe6f6bd0aa892cc4b44014a327c27e4e4f4ddb26..bd870459f504b6b67a228093798065b387cbb0d5 100644
--- a/webkit/fileapi/isolated_mount_point_provider.h
+++ b/webkit/fileapi/isolated_mount_point_provider.h
@@ -15,6 +15,8 @@ namespace fileapi {
class DraggedFileUtil;
class IsolatedContext;
class IsolatedFileUtil;
+class MediaPathFilter;
+class NativeMediaFileUtil;
class IsolatedMountPointProvider : public FileSystemMountPointProvider {
public:
@@ -56,8 +58,11 @@ class IsolatedMountPointProvider : public FileSystemMountPointProvider {
virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE;
private:
+ scoped_ptr<MediaPathFilter> media_path_filter_;
vandebo (ex-Chrome) 2012/08/01 01:11:05 nit: two spaces
tzik 2012/08/01 21:46:06 Done.
+
scoped_ptr<IsolatedFileUtil> isolated_file_util_;
scoped_ptr<DraggedFileUtil> dragged_file_util_;
+ scoped_ptr<NativeMediaFileUtil> native_media_file_util_;
};
} // namespace fileapi

Powered by Google App Engine
This is Rietveld 408576698