| Index: chrome/browser/ui/views/select_file_dialog_extension_browsertest.cc
|
| diff --git a/chrome/browser/ui/views/select_file_dialog_extension_browsertest.cc b/chrome/browser/ui/views/select_file_dialog_extension_browsertest.cc
|
| index 493a707a2dcf0a824b4fdbd21a14782ea9e76097..a109f3aed2454cfb03346f0e2a3af7eaed8af168 100644
|
| --- a/chrome/browser/ui/views/select_file_dialog_extension_browsertest.cc
|
| +++ b/chrome/browser/ui/views/select_file_dialog_extension_browsertest.cc
|
| @@ -26,7 +26,6 @@
|
| #include "content/public/browser/notification_types.h"
|
| #include "webkit/fileapi/file_system_context.h"
|
| #include "webkit/fileapi/file_system_mount_point_provider.h"
|
| -#include "webkit/fileapi/file_system_path_manager.h"
|
|
|
| // Mock listener used by test below.
|
| class MockSelectFileDialogListener : public SelectFileDialog::Listener {
|
| @@ -101,10 +100,8 @@ class SelectFileDialogExtensionBrowserTest : public ExtensionBrowserTest {
|
|
|
| // Creates a file system mount point for a directory.
|
| void AddMountPoint(const FilePath& path) {
|
| - fileapi::FileSystemPathManager* path_manager =
|
| - browser()->profile()->GetFileSystemContext()->path_manager();
|
| fileapi::ExternalFileSystemMountPointProvider* provider =
|
| - path_manager->external_provider();
|
| + browser()->profile()->GetFileSystemContext()->external_provider();
|
| provider->AddMountPoint(path);
|
| }
|
|
|
|
|