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 8de36c1415b8a7def8c9818810084e9ff93c2976..45864173e3a246f06d655259aafbbbd3764ed514 100644 |
--- a/content/public/browser/content_browser_client.h |
+++ b/content/public/browser/content_browser_client.h |
@@ -27,7 +27,7 @@ |
#include "net/url_request/url_request_job_factory.h" |
#include "third_party/WebKit/public/platform/WebNotificationPermission.h" |
#include "ui/base/window_open_disposition.h" |
-#include "webkit/browser/fileapi/file_system_context.h" |
+#include "storage/browser/fileapi/file_system_context.h" |
#if defined(OS_POSIX) && !defined(OS_MACOSX) |
#include "base/posix/global_descriptors.h" |
@@ -74,7 +74,7 @@ namespace ui { |
class SelectFilePolicy; |
} |
-namespace fileapi { |
+namespace storage { |
class ExternalMountPoints; |
class FileSystemBackend; |
} |
@@ -584,7 +584,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. |
@@ -593,7 +593,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. |