| Index: chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| diff --git a/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc b/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| index 473f8921e0cfad63b87d066bbfd81736a32f1846..9b4e4a186ec12a21b4c2acf23615d60f5cb8c11a 100644
|
| --- a/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| +++ b/chrome/browser/extensions/api/browsing_data/browsing_data_api.cc
|
| @@ -20,6 +20,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/browser.h"
|
| #include "chrome/common/pref_names.h"
|
| +#include "components/browsing_data/core/browsing_data_utils.h"
|
| #include "components/browsing_data/core/pref_names.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "extensions/common/error_utils.h"
|
| @@ -320,7 +321,7 @@ void BrowsingDataRemoverFunction::StartRemoving() {
|
| // remover is responsible for deleting itself once data removal is complete.
|
| observer_.Add(remover);
|
| remover->RemoveAndReply(
|
| - BrowsingDataRemover::TimeRange(remove_since_, base::Time::Max()),
|
| + remove_since_, base::Time::Max(),
|
| removal_mask_, origin_type_mask_, this);
|
| }
|
|
|
|
|