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