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 c55c6be46ee43a6a16f9dbbc1e6d46e7e095867b..89def976b1dadfd56068798bc5485f7dfb9ce3ef 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -43,6 +43,7 @@ |
#include "chrome/browser/geolocation/chrome_access_token_store.h" |
#include "chrome/browser/google/google_util.h" |
#include "chrome/browser/media/media_capture_devices_dispatcher.h" |
+#include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.h" |
#include "chrome/browser/metrics/chrome_browser_main_extra_parts_metrics.h" |
#include "chrome/browser/nacl_host/nacl_process_host.h" |
#include "chrome/browser/net/chrome_net_log.h" |
@@ -2109,6 +2110,15 @@ void ChromeContentBrowserClient::GetAdditionalAllowedSchemesForFileSystem( |
additional_allowed_schemes->push_back(extensions::kExtensionScheme); |
} |
+void ChromeContentBrowserClient::GetAdditionalFileSystemMountPointProviders( |
+ const base::FilePath& partition_path, |
+ ScopedVector<fileapi::FileSystemMountPointProvider>* additional_providers) { |
+ DCHECK(additional_providers); |
jam
2013/04/23 17:21:39
nit: skip this. if it's null, the crash on the nex
tommycli
2013/04/23 17:37:01
Done.
|
+ |
+ additional_providers->push_back(new MediaFileSystemMountPointProvider( |
+ partition_path)); |
+} |
+ |
#if defined(OS_POSIX) && !defined(OS_MACOSX) |
void ChromeContentBrowserClient::GetAdditionalMappedFilesForChildProcess( |
const CommandLine& command_line, |