| Index: chrome/browser/browsing_data/browsing_data_file_system_helper.h
|
| diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.h b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
|
| index 97e223fd1f68a9af77b8bc595728a05916de9566..6f766ace5207bd932f17c359a57c3cf7e9a6d3bc 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h
|
| +++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
|
| @@ -16,9 +16,9 @@
|
| #include "base/synchronization/lock.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "url/gurl.h"
|
| -#include "webkit/common/fileapi/file_system_types.h"
|
| +#include "storage/common/fileapi/file_system_types.h"
|
|
|
| -namespace fileapi {
|
| +namespace storage {
|
| class FileSystemContext;
|
| }
|
|
|
| @@ -52,7 +52,7 @@ class BrowsingDataFileSystemHelper
|
| // The origin for which the information is relevant.
|
| GURL origin;
|
| // FileSystemType to usage (in bytes) map.
|
| - std::map<fileapi::FileSystemType, int64> usage_map;
|
| + std::map<storage::FileSystemType, int64> usage_map;
|
| };
|
|
|
| // Creates a BrowsingDataFileSystemHelper instance for the file systems
|
| @@ -63,7 +63,7 @@ class BrowsingDataFileSystemHelper
|
| // The BrowsingDataFileSystemHelper will not change the profile itself, but
|
| // can modify data it contains (by removing file systems).
|
| static BrowsingDataFileSystemHelper* Create(
|
| - fileapi::FileSystemContext* file_system_context);
|
| + storage::FileSystemContext* file_system_context);
|
|
|
| // Starts the process of fetching file system data, which will call |callback|
|
| // upon completion, passing it a constant list of FileSystemInfo objects.
|
| @@ -112,7 +112,7 @@ class CannedBrowsingDataFileSystemHelper
|
| // and a persistent filesystem, AddFileSystem must be called twice (once for
|
| // each file system type).
|
| void AddFileSystem(const GURL& origin,
|
| - fileapi::FileSystemType type,
|
| + storage::FileSystemType type,
|
| int64 size);
|
|
|
| // Clear this helper's list of canned filesystems.
|
|
|