| Index: chrome/browser/chrome_content_browser_client_parts.h
|
| diff --git a/chrome/browser/chrome_content_browser_client_parts.h b/chrome/browser/chrome_content_browser_client_parts.h
|
| index 9ec65c6f6035a45b762762ade13a091560e196c2..ef7e1d0669cde8cd32889b2d5af39993ce09743f 100644
|
| --- a/chrome/browser/chrome_content_browser_client_parts.h
|
| +++ b/chrome/browser/chrome_content_browser_client_parts.h
|
| @@ -9,7 +9,7 @@
|
| #include <vector>
|
|
|
| #include "base/memory/scoped_vector.h"
|
| -#include "webkit/browser/fileapi/file_system_context.h"
|
| +#include "storage/browser/fileapi/file_system_context.h"
|
|
|
| namespace base {
|
| class CommandLine;
|
| @@ -25,7 +25,7 @@ class SiteInstance;
|
| struct WebPreferences;
|
| }
|
|
|
| -namespace fileapi {
|
| +namespace storage {
|
| class FileSystemBackend;
|
| }
|
|
|
| @@ -53,11 +53,11 @@ class ChromeContentBrowserClientParts {
|
| virtual void GetAdditionalAllowedSchemesForFileSystem(
|
| std::vector<std::string>* additional_allowed_schemes) {}
|
| virtual void GetURLRequestAutoMountHandlers(
|
| - std::vector<fileapi::URLRequestAutoMountHandler>* handlers) {}
|
| + std::vector<storage::URLRequestAutoMountHandler>* handlers) {}
|
| virtual void GetAdditionalFileSystemBackends(
|
| content::BrowserContext* browser_context,
|
| const base::FilePath& storage_partition_path,
|
| - ScopedVector<fileapi::FileSystemBackend>* additional_backends) {}
|
| + ScopedVector<storage::FileSystemBackend>* additional_backends) {}
|
|
|
| // Append extra switches to |command_line| for |process|. If |process| is not
|
| // NULL, then neither is |profile|.
|
|
|