| OLD | NEW | 
|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BROWSING_DATA_IOS_CHROME_BROWSING_DATA_REMOVER_H_ | 5 #ifndef IOS_CHROME_BROWSER_BROWSING_DATA_IOS_CHROME_BROWSING_DATA_REMOVER_H_ | 
| 6 #define IOS_CHROME_BROWSER_BROWSING_DATA_IOS_CHROME_BROWSING_DATA_REMOVER_H_ | 6 #define IOS_CHROME_BROWSER_BROWSING_DATA_IOS_CHROME_BROWSING_DATA_REMOVER_H_ | 
| 7 | 7 | 
| 8 #include <set> | 8 #include <set> | 
| 9 | 9 | 
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" | 
| 11 #include "base/macros.h" | 11 #include "base/macros.h" | 
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" | 
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" | 
|  | 14 #include "base/prefs/pref_member.h" | 
| 14 #include "base/sequenced_task_runner_helpers.h" | 15 #include "base/sequenced_task_runner_helpers.h" | 
| 15 #include "base/task/cancelable_task_tracker.h" | 16 #include "base/task/cancelable_task_tracker.h" | 
| 16 #include "base/time/time.h" | 17 #include "base/time/time.h" | 
| 17 #include "components/prefs/pref_member.h" |  | 
| 18 #include "components/search_engines/template_url_service.h" | 18 #include "components/search_engines/template_url_service.h" | 
| 19 #include "url/gurl.h" | 19 #include "url/gurl.h" | 
| 20 #include "url/origin.h" | 20 #include "url/origin.h" | 
| 21 | 21 | 
| 22 namespace ios { | 22 namespace ios { | 
| 23 class ChromeBrowserState; | 23 class ChromeBrowserState; | 
| 24 } | 24 } | 
| 25 | 25 | 
| 26 namespace net { | 26 namespace net { | 
| 27 class URLRequestContextGetter; | 27 class URLRequestContextGetter; | 
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 262 | 262 | 
| 263   // Used if we need to clear history. | 263   // Used if we need to clear history. | 
| 264   base::CancelableTaskTracker history_task_tracker_; | 264   base::CancelableTaskTracker history_task_tracker_; | 
| 265 | 265 | 
| 266   scoped_ptr<TemplateURLService::Subscription> template_url_sub_; | 266   scoped_ptr<TemplateURLService::Subscription> template_url_sub_; | 
| 267 | 267 | 
| 268   DISALLOW_COPY_AND_ASSIGN(IOSChromeBrowsingDataRemover); | 268   DISALLOW_COPY_AND_ASSIGN(IOSChromeBrowsingDataRemover); | 
| 269 }; | 269 }; | 
| 270 | 270 | 
| 271 #endif  // IOS_CHROME_BROWSER_BROWSING_DATA_IOS_CHROME_BROWSING_DATA_REMOVER_H_ | 271 #endif  // IOS_CHROME_BROWSER_BROWSING_DATA_IOS_CHROME_BROWSING_DATA_REMOVER_H_ | 
| OLD | NEW | 
|---|