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

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

Issue 2299543003: Remove old clear browsing data methods on iOS (Closed)
Patch Set: 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 "components/browsing_data/core/browsing_data_utils.h"
11 #import "ios/chrome/browser/ui/commands/generic_chrome_command.h" 11 #import "ios/chrome/browser/ui/commands/generic_chrome_command.h"
12 12
13 namespace ios { 13 namespace ios {
14 class ChromeBrowserState; 14 class ChromeBrowserState;
15 } 15 }
16 16
17 // 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.
18 @interface ClearBrowsingDataCommand : GenericChromeCommand 18 @interface ClearBrowsingDataCommand : GenericChromeCommand
19 19
20 // Mark inherited initializer as unavailable to prevent calling it by mistake. 20 // Mark inherited initializer as unavailable to prevent calling it by mistake.
21 - (instancetype)initWithTag:(NSInteger)tag NS_UNAVAILABLE; 21 - (instancetype)initWithTag:(NSInteger)tag NS_UNAVAILABLE;
22 22
23 // Initializes a command intented to clear browsing data for |browserState| 23 // Initializes a command intented to clear browsing data for |browserState|
24 // that corresponds to removal mask |mask| for the time period |timePeriod|. 24 // that corresponds to removal mask |mask| for the time period |timePeriod|.
25 - (instancetype)initWithBrowserState:(ios::ChromeBrowserState*)browserState 25 - (instancetype)initWithBrowserState:(ios::ChromeBrowserState*)browserState
26 mask:(int)mask 26 mask:(int)mask
27 timePeriod:(browsing_data::TimePeriod)timePeriod 27 timePeriod:(browsing_data::TimePeriod)timePeriod
28 NS_DESIGNATED_INITIALIZER; 28 NS_DESIGNATED_INITIALIZER;
29 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;
34
35 // When executed this command will remove browsing data for this BrowserState. 30 // When executed this command will remove browsing data for this BrowserState.
36 @property(nonatomic, readonly) ios::ChromeBrowserState* browserState; 31 @property(nonatomic, readonly) ios::ChromeBrowserState* browserState;
37 32
38 // Removal mask: see BrowsingDataRemover::RemoveDataMask. 33 // Removal mask: see BrowsingDataRemover::RemoveDataMask.
39 @property(nonatomic, readonly) int mask; 34 @property(nonatomic, readonly) int mask;
40 35
41 // Time period for which the browsing data will be removed. 36 // Time period for which the browsing data will be removed.
42 @property(nonatomic, readonly) browsing_data::TimePeriod timePeriod; 37 @property(nonatomic, readonly) browsing_data::TimePeriod timePeriod;
43 38
44 @end 39 @end
45 40
46 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_ 41 #endif // IOS_CHROME_BROWSER_UI_COMMANDS_CLEAR_BROWSING_DATA_COMMAND_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698