| Index: chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| index b0746c21a8879e712d4d937024ad6b1839d91398..4f827dfb82b2808e8b98c4f385337b08184f6963 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc
|
| @@ -45,7 +45,6 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "webkit/browser/quota/mock_quota_manager.h"
|
| #include "webkit/browser/quota/quota_manager.h"
|
| -#include "webkit/common/dom_storage/dom_storage_types.h"
|
| #include "webkit/common/quota/quota_types.h"
|
|
|
| using content::BrowserThread;
|
| @@ -520,7 +519,7 @@ class RemoveLocalStorageTester {
|
| base::Unretained(this)));
|
| }
|
| void OnGotLocalStorageUsage(
|
| - const std::vector<dom_storage::LocalStorageUsageInfo>& infos) {
|
| + const std::vector<content::LocalStorageUsageInfo>& infos) {
|
| infos_ = infos;
|
| await_completion_.Notify();
|
| }
|
| @@ -529,7 +528,7 @@ class RemoveLocalStorageTester {
|
| TestingProfile* profile_;
|
| content::DOMStorageContext* dom_storage_context_;
|
|
|
| - std::vector<dom_storage::LocalStorageUsageInfo> infos_;
|
| + std::vector<content::LocalStorageUsageInfo> infos_;
|
|
|
| AwaitCompletionHelper await_completion_;
|
|
|
|
|