Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: chrome/browser/browsing_data/browsing_data_file_system_helper.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..21a23afc33a8673e9586dbf2b1141569f3a878f4 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
@@ -18,7 +18,7 @@
#include "url/gurl.h"
#include "webkit/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.

Powered by Google App Engine
This is Rietveld 408576698