| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_DELEGATE_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/callback_forward.h" |
| 9 |
| 8 class GURL; | 10 class GURL; |
| 9 | 11 |
| 12 namespace base { |
| 13 class Time; |
| 14 } |
| 15 |
| 10 namespace content { | 16 namespace content { |
| 11 class BrowsingDataFilterBuilder; | 17 class BrowsingDataFilterBuilder; |
| 12 } | 18 } |
| 13 | 19 |
| 14 namespace storage { | 20 namespace storage { |
| 15 class SpecialStoragePolicy; | 21 class SpecialStoragePolicy; |
| 16 } | 22 } |
| 17 | 23 |
| 18 class BrowsingDataRemoverDelegate { | 24 class BrowsingDataRemoverDelegate { |
| 19 public: | 25 public: |
| (...skipping 11 matching lines...) Expand all Loading... |
| 31 virtual void RemoveEmbedderData( | 37 virtual void RemoveEmbedderData( |
| 32 const base::Time& delete_begin, | 38 const base::Time& delete_begin, |
| 33 const base::Time& delete_end, | 39 const base::Time& delete_end, |
| 34 int remove_mask, | 40 int remove_mask, |
| 35 const content::BrowsingDataFilterBuilder& filter_builder, | 41 const content::BrowsingDataFilterBuilder& filter_builder, |
| 36 int origin_type_mask, | 42 int origin_type_mask, |
| 37 const base::Closure& callback) = 0; | 43 const base::Closure& callback) = 0; |
| 38 }; | 44 }; |
| 39 | 45 |
| 40 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_DELEGATE_H_ | 46 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_DELEGATE_H_ |
| OLD | NEW |