| Index: chrome/browser/browsing_data_remover.h
|
| diff --git a/chrome/browser/browsing_data_remover.h b/chrome/browser/browsing_data_remover.h
|
| index a0e3a96b252723db49199e4cfa977b18ffccfcc6..85b5280fa9ce71d548988cddb6e7340ccdd7e2bf 100644
|
| --- a/chrome/browser/browsing_data_remover.h
|
| +++ b/chrome/browser/browsing_data_remover.h
|
| @@ -93,14 +93,18 @@ class BrowsingDataRemover : public content::NotificationObserver,
|
| NotificationDetails();
|
| NotificationDetails(const NotificationDetails& details);
|
| NotificationDetails(base::Time removal_begin,
|
| - int removal_mask);
|
| + int removal_mask,
|
| + int origin_set_mask);
|
| ~NotificationDetails();
|
|
|
| // The beginning of the removal time range.
|
| base::Time removal_begin;
|
|
|
| - // The removal mask (see the RemoveDataMask enum for details)
|
| + // The removal mask (see the RemoveDataMask enum for details).
|
| int removal_mask;
|
| +
|
| + // The origin set mask (see BrowsingDataHelper::OriginSetMask for details).
|
| + int origin_set_mask;
|
| };
|
|
|
| // Observer is notified when the removal is done. Done means keywords have
|
|
|