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

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..af1b441c90d935bb2056d23d229d2f448b96aa6c 100644
--- a/chrome/browser/browsing_data/browsing_data_remover.h
+++ b/chrome/browser/browsing_data/browsing_data_remover.h
@@ -16,7 +16,6 @@
#include "base/time/time.h"
#include "chrome/browser/pepper_flash_settings_manager.h"
#include "chrome/common/cancelable_task_tracker.h"
-#include "content/public/browser/dom_storage_context.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "url/gurl.h"
@@ -42,7 +41,8 @@ namespace quota {
class QuotaManager;
}
-namespace dom_storage {
+namespace content {
+class DOMStorageContext;
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