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

Side by Side Diff: ios/chrome/browser/ui/commands/clear_browsing_data_command.h

Issue 2270063005: Add support for time based deletion of browsing data on iOS (Closed)
Patch Set: Updated comment in AccountConsistencyService Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_
6 #define IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_ 6 #define IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_
7 7
8 #import <Foundation/Foundation.h> 8 #import <Foundation/Foundation.h>
9 9
10 #import "components/browsing_data/core/browsing_data_utils.h"
10 #import "ios/chrome/browser/ui/commands/generic_chrome_command.h" 11 #import "ios/chrome/browser/ui/commands/generic_chrome_command.h"
11 12
12 namespace ios { 13 namespace ios {
13 class ChromeBrowserState; 14 class ChromeBrowserState;
14 } 15 }
15 16
16 // Command sent to clear the browsing data associated with a browser state. 17 // Command sent to clear the browsing data associated with a browser state.
17 @interface ClearBrowsingDataCommand : GenericChromeCommand 18 @interface ClearBrowsingDataCommand : GenericChromeCommand
18 19
19 // Mark inherited initializer as unavailable to prevent calling it by mistake. 20 // Mark inherited initializer as unavailable to prevent calling it by mistake.
20 - (instancetype)initWithTag:(NSInteger)tag NS_UNAVAILABLE; 21 - (instancetype)initWithTag:(NSInteger)tag NS_UNAVAILABLE;
21 22
22 // Initializes a command intented to clear browsing data for |browserState| 23 // Initializes a command intented to clear browsing data for |browserState|
23 // that correspong to removal mask |mask|. 24 // that corresponds to removal mask |mask| for the time period |timePeriod|.
24 - (instancetype)initWithBrowserState:(ios::ChromeBrowserState*)browserState 25 - (instancetype)initWithBrowserState:(ios::ChromeBrowserState*)browserState
25 mask:(int)mask NS_DESIGNATED_INITIALIZER; 26 mask:(int)mask
27 timePeriod:(browsing_data::TimePeriod)timePeriod
28 NS_DESIGNATED_INITIALIZER;
29
30 // DEPRECATED: Same as above, but setting |timePeriod| to ALL_TIME.
31 // TODO(ioanap): Remove after all call sites are changed.
32 - (instancetype)initWithBrowserState:(ios::ChromeBrowserState*)browserState
33 mask:(int)mask;
26 34
27 // When executed this command will remove browsing data for this BrowserState. 35 // When executed this command will remove browsing data for this BrowserState.
28 @property(nonatomic, readonly) ios::ChromeBrowserState* browserState; 36 @property(nonatomic, readonly) ios::ChromeBrowserState* browserState;
29 37
30 // Removal mask: see BrowsingDataRemover::RemoveDataMask. 38 // Removal mask: see BrowsingDataRemover::RemoveDataMask.
31 @property(nonatomic, readonly) int mask; 39 @property(nonatomic, readonly) int mask;
32 40
41 // Time period for which the browsing data will be removed.
42 @property(nonatomic, readonly) browsing_data::TimePeriod timePeriod;
43
33 @end 44 @end
34 45
35 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_ 46 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/signin/browser_state_data_remover.mm ('k') | ios/chrome/browser/ui/commands/clear_browsing_data_command.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698