| Index: chrome/browser/browsing_data/browsing_data_remover.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_remover.cc b/chrome/browser/browsing_data/browsing_data_remover.cc
|
| index fb6403c01b8f747e70ea7703bcf85eb68db4d248..5801b67f4d20c63c6a38b6f37f1caba40094cd44 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover.cc
|
| @@ -65,7 +65,6 @@
|
| #include "net/url_request/url_request_context_getter.h"
|
| #include "webkit/browser/quota/quota_manager.h"
|
| #include "webkit/browser/quota/special_storage_policy.h"
|
| -#include "webkit/common/dom_storage/dom_storage_types.h"
|
| #include "webkit/common/quota/quota_types.h"
|
|
|
| using content::BrowserContext;
|
| @@ -896,7 +895,7 @@ void BrowsingDataRemover::ClearLocalStorageOnUIThread() {
|
| }
|
|
|
| void BrowsingDataRemover::OnGotLocalStorageUsageInfo(
|
| - const std::vector<dom_storage::LocalStorageUsageInfo>& infos) {
|
| + const std::vector<content::LocalStorageUsageInfo>& infos) {
|
| DCHECK(waiting_for_clear_local_storage_);
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
| @@ -924,7 +923,7 @@ void BrowsingDataRemover::ClearSessionStorageOnUIThread() {
|
| }
|
|
|
| void BrowsingDataRemover::OnGotSessionStorageUsageInfo(
|
| - const std::vector<dom_storage::SessionStorageUsageInfo>& infos) {
|
| + const std::vector<content::SessionStorageUsageInfo>& infos) {
|
| DCHECK(waiting_for_clear_session_storage_);
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
|
|
|