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

Unified Diff: webkit/fileapi/file_system_context.h

Issue 14247034: Move Media Galleries FileAPI code out of webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cr-14352004
Patch Set: Formatting fixes. Created 7 years, 8 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/file_system_context.h
diff --git a/webkit/fileapi/file_system_context.h b/webkit/fileapi/file_system_context.h
index ff9460d6690144aeca2ca1ef94c42ad8fed18a4b..edc6ec584fc52d7a9de3b8455cfb6213eb677dd3 100644
--- a/webkit/fileapi/file_system_context.h
+++ b/webkit/fileapi/file_system_context.h
@@ -24,6 +24,10 @@ namespace base {
class FilePath;
}
+namespace chrome {
+class NativeMediaFileUtilTest;
+}
+
namespace quota {
class QuotaManagerProxy;
class SpecialStoragePolicy;
@@ -55,7 +59,6 @@ class FileSystemTaskRunners;
class FileSystemURL;
class IsolatedMountPointProvider;
class MountPoints;
-class MediaFileSystemMountPointProvider;
class SandboxMountPointProvider;
struct DefaultContextDeleter;
@@ -239,7 +242,7 @@ class WEBKIT_STORAGE_EXPORT FileSystemContext
friend class webkit_blob::BlobURLRequestJobTest;
friend class FileSystemQuotaClientTest;
friend class LocalFileSystemTestOriginHelper;
- friend class NativeMediaFileUtilTest;
+ friend class chrome::NativeMediaFileUtilTest;
vandebo (ex-Chrome) 2013/04/22 22:32:28 Is this still needed? Not sure this is Kosher.
tommycli 2013/04/22 23:45:31 It's gross, but still needed. We could eliminate t
friend class FileSystemURLRequestJobTest;
friend class UploadFileSystemFileElementReaderTest;
@@ -279,10 +282,6 @@ class WEBKIT_STORAGE_EXPORT FileSystemContext
scoped_ptr<IsolatedMountPointProvider> isolated_provider_;
scoped_ptr<ExternalFileSystemMountPointProvider> external_provider_;
- // TODO(kinuko,vandebo): Move this out of webkit/fileapi layer and
- // give this provider as additional_providers.
- scoped_ptr<MediaFileSystemMountPointProvider> media_provider_;
-
// Additional mount point providers.
ScopedVector<FileSystemMountPointProvider> additional_providers_;

Powered by Google App Engine
This is Rietveld 408576698