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

Unified Diff: content/browser/fileapi/browser_file_system_helper.cc

Issue 14247034: Move Media Galleries FileAPI code out of webkit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cr-14352004
Patch Set: Add android ifdef. 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/fileapi/browser_file_system_helper.cc
diff --git a/content/browser/fileapi/browser_file_system_helper.cc b/content/browser/fileapi/browser_file_system_helper.cc
index a27371271570af3e211a5527d68b389d5e4608c6..75a8aae7f039d026f2d4e1d20b0534d8f8e8bea9 100644
--- a/content/browser/fileapi/browser_file_system_helper.cc
+++ b/content/browser/fileapi/browser_file_system_helper.cc
@@ -64,12 +64,15 @@ scoped_refptr<fileapi::FileSystemContext> CreateFileSystemContext(
// Setting up additional mount point providers.
ScopedVector<fileapi::FileSystemMountPointProvider> additional_providers;
+ GetContentClient()->browser()->GetAdditionalFileSystemMountPointProviders(
+ profile_path, &additional_providers);
+
return new fileapi::FileSystemContext(
task_runners.Pass(),
external_mount_points,
special_storage_policy,
quota_manager_proxy,
- ScopedVector<fileapi::FileSystemMountPointProvider>(),
+ additional_providers.Pass(),
profile_path,
CreateBrowserFileSystemOptions(is_incognito));
}
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698