| 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.
|
|
|