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

Side by Side Diff: chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h

Issue 2617403005: Move HISTORY and PASSWORDS from BrowsingDataRemover to the delegate (Closed)
Patch Set: Rebase. Created 3 years, 11 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 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_CHROME_BROWSING_DATA_REMOVER_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_DELEGATE_H_
6 #define CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_DELEGATE_H_ 6 #define CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_DELEGATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 SubTask clear_keyword_data_; 139 SubTask clear_keyword_data_;
140 #if !defined(DISABLE_NACL) 140 #if !defined(DISABLE_NACL)
141 SubTask clear_nacl_cache_; 141 SubTask clear_nacl_cache_;
142 SubTask clear_pnacl_cache_; 142 SubTask clear_pnacl_cache_;
143 #endif 143 #endif
144 SubTask clear_hostname_resolution_cache_; 144 SubTask clear_hostname_resolution_cache_;
145 SubTask clear_network_predictor_; 145 SubTask clear_network_predictor_;
146 SubTask clear_networking_history_; 146 SubTask clear_networking_history_;
147 SubTask clear_passwords_; 147 SubTask clear_passwords_;
148 SubTask clear_passwords_stats_; 148 SubTask clear_passwords_stats_;
149 SubTask clear_http_auth_cache_;
149 SubTask clear_platform_keys_; 150 SubTask clear_platform_keys_;
150 #if defined(OS_ANDROID) 151 #if defined(OS_ANDROID)
151 SubTask clear_precache_history_; 152 SubTask clear_precache_history_;
152 SubTask clear_offline_page_data_; 153 SubTask clear_offline_page_data_;
153 #endif 154 #endif
154 155
155 #if BUILDFLAG(ENABLE_WEBRTC) 156 #if BUILDFLAG(ENABLE_WEBRTC)
156 SubTask clear_webrtc_logs_; 157 SubTask clear_webrtc_logs_;
157 #endif 158 #endif
158 SubTask clear_auto_sign_in_; 159 SubTask clear_auto_sign_in_;
(...skipping 15 matching lines...) Expand all
174 // not initialised, so the registry must be mocked out. 175 // not initialised, so the registry must be mocked out.
175 std::unique_ptr<WebappRegistry> webapp_registry_; 176 std::unique_ptr<WebappRegistry> webapp_registry_;
176 #endif 177 #endif
177 178
178 base::WeakPtrFactory<ChromeBrowsingDataRemoverDelegate> weak_ptr_factory_; 179 base::WeakPtrFactory<ChromeBrowsingDataRemoverDelegate> weak_ptr_factory_;
179 180
180 DISALLOW_COPY_AND_ASSIGN(ChromeBrowsingDataRemoverDelegate); 181 DISALLOW_COPY_AND_ASSIGN(ChromeBrowsingDataRemoverDelegate);
181 }; 182 };
182 183
183 #endif // CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_DELEGATE_H_ 184 #endif // CHROME_BROWSER_BROWSING_DATA_CHROME_BROWSING_DATA_REMOVER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698