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

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

Issue 22297005: Move webkit/{browser,common}/dom_storage into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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_remover.h
diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h
index 502247fa322fc12127c5428b8ecfdb9731b1f259..ff524cb5d1468d7363f5ae9e9d6d0b38aae481f5 100644
--- a/chrome/browser/browsing_data/browsing_data_remover.h
+++ b/chrome/browser/browsing_data/browsing_data_remover.h
@@ -42,7 +42,7 @@ namespace quota {
class QuotaManager;
}
-namespace dom_storage {
+namespace content {
struct LocalStorageUsageInfo;
struct SessionStorageUsageInfo;
}
@@ -295,14 +295,14 @@ class BrowsingDataRemover : public content::NotificationObserver
// Callback to deal with the list gathered in ClearLocalStorageOnUIThread.
void OnGotLocalStorageUsageInfo(
- const std::vector<dom_storage::LocalStorageUsageInfo>& infos);
+ const std::vector<content::LocalStorageUsageInfo>& infos);
// Invoked on the UI thread to delete session storage.
void ClearSessionStorageOnUIThread();
// Callback to deal with the list gathered in ClearSessionStorageOnUIThread.
void OnGotSessionStorageUsageInfo(
- const std::vector<dom_storage::SessionStorageUsageInfo>& infos);
+ const std::vector<content::SessionStorageUsageInfo>& infos);
// Invoked on the IO thread to delete all storage types managed by the quota
// system: AppCache, Databases, FileSystems.

Powered by Google App Engine
This is Rietveld 408576698