| Index: content/public/browser/content_browser_client.h
|
| diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
|
| index 5f9a789c6046002f8742938c9609f83b4721eddb..f8253a663b2c4f3595bfb4aaf3d8c84d7be5c786 100644
|
| --- a/content/public/browser/content_browser_client.h
|
| +++ b/content/public/browser/content_browser_client.h
|
| @@ -74,7 +74,7 @@ namespace ui {
|
| class SelectFilePolicy;
|
| }
|
|
|
| -namespace fileapi {
|
| +namespace storage {
|
| class ExternalMountPoints;
|
| class FileSystemBackend;
|
| }
|
| @@ -565,7 +565,7 @@ class CONTENT_EXPORT ContentBrowserClient {
|
|
|
| // Returns auto mount handlers for URL requests for FileSystem APIs.
|
| virtual void GetURLRequestAutoMountHandlers(
|
| - std::vector<fileapi::URLRequestAutoMountHandler>* handlers) {}
|
| + std::vector<storage::URLRequestAutoMountHandler>* handlers) {}
|
|
|
| // Returns additional file system backends for FileSystem API.
|
| // |browser_context| is needed in the additional FileSystemBackends.
|
| @@ -574,7 +574,7 @@ class CONTENT_EXPORT ContentBrowserClient {
|
| virtual void GetAdditionalFileSystemBackends(
|
| BrowserContext* browser_context,
|
| const base::FilePath& storage_partition_path,
|
| - ScopedVector<fileapi::FileSystemBackend>* additional_backends) {}
|
| + ScopedVector<storage::FileSystemBackend>* additional_backends) {}
|
|
|
| // Allows an embedder to return its own LocationProvider implementation.
|
| // Return NULL to use the default one for the platform to be created.
|
|
|