| 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 f11e26fd588c63b8843be513c3d4abbb7eb27472..583f5af7b162d89919ad9e414103901335f7fe47 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -14,6 +14,7 @@
|
| #include "base/path_service.h"
|
| #include "base/prefs/pref_service.h"
|
| #include "base/string_number_conversions.h"
|
| +#include "base/threading/sequenced_worker_pool.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/app/breakpad_mac.h"
|
| #include "chrome/browser/app_mode/app_mode_utils.h"
|
| @@ -105,6 +106,7 @@
|
| #include "content/public/browser/browser_child_process_host.h"
|
| #include "content/public/browser/browser_main_parts.h"
|
| #include "content/public/browser/browser_ppapi_host.h"
|
| +#include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/browser_url_handler.h"
|
| #include "content/public/browser/child_process_data.h"
|
| #include "content/public/browser/child_process_security_policy.h"
|
| @@ -2187,8 +2189,11 @@ void ChromeContentBrowserClient::GetAdditionalFileSystemMountPointProviders(
|
| const base::FilePath& storage_partition_path,
|
| ScopedVector<fileapi::FileSystemMountPointProvider>* additional_providers) {
|
| #if !defined(OS_ANDROID)
|
| + base::SequencedWorkerPool* pool = content::BrowserThread::GetBlockingPool();
|
| additional_providers->push_back(new MediaFileSystemMountPointProvider(
|
| - storage_partition_path));
|
| + storage_partition_path,
|
| + pool->GetSequencedTaskRunner(pool->GetNamedSequenceToken(
|
| + MediaFileSystemMountPointProvider::kMediaTaskRunnerName))));
|
| #endif
|
| }
|
|
|
|
|