| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 39d0c4921b768aaf82db5b4057e5e2b331e2ac8f..af5a007d0303e75102d24265a070e750f95470f9 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -170,6 +170,10 @@
|
| #include "chrome/browser/signin/signin_manager_factory.h"
|
| #endif
|
|
|
| +#if !defined(OS_ANDROID)
|
| +#include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.h"
|
| +#endif
|
| +
|
| using base::FileDescriptor;
|
| using content::AccessTokenStore;
|
| using content::BrowserChildProcessHostIterator;
|
| @@ -2108,6 +2112,15 @@ void ChromeContentBrowserClient::GetAdditionalAllowedSchemesForFileSystem(
|
| additional_allowed_schemes->push_back(extensions::kExtensionScheme);
|
| }
|
|
|
| +void ChromeContentBrowserClient::GetAdditionalFileSystemMountPointProviders(
|
| + const base::FilePath& storage_partition_path,
|
| + ScopedVector<fileapi::FileSystemMountPointProvider>* additional_providers) {
|
| +#if !defined(OS_ANDROID)
|
| + additional_providers->push_back(new MediaFileSystemMountPointProvider(
|
| + storage_partition_path));
|
| +#endif
|
| +}
|
| +
|
| #if defined(OS_POSIX) && !defined(OS_MACOSX)
|
| void ChromeContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
|
| const CommandLine& command_line,
|
|
|