Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: chrome/browser/browsing_data_remover.h

Issue 10522002: `chrome.browsingData` extension API can now remove data from protected origins. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tiny docs tweak. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/browsing_data_remover.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | chrome/browser/browsing_data_remover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698