OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 5 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/debug/leak_tracker.h" | 11 #include "base/debug/leak_tracker.h" |
12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
13 #include "base/path_service.h" | 13 #include "base/path_service.h" |
14 #include "base/stl_util.h" | 14 #include "base/stl_util.h" |
15 #include "base/string_util.h" | 15 #include "base/string_util.h" |
16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
17 #include "base/threading/thread_restrictions.h" | 17 #include "base/threading/thread_restrictions.h" |
| 18 #include "chrome/browser/api/prefs/pref_change_registrar.h" |
18 #include "chrome/browser/browser_process.h" | 19 #include "chrome/browser/browser_process.h" |
19 #include "chrome/browser/metrics/metrics_service.h" | 20 #include "chrome/browser/metrics/metrics_service.h" |
20 #include "chrome/browser/net/sqlite_persistent_cookie_store.h" | 21 #include "chrome/browser/net/sqlite_persistent_cookie_store.h" |
21 #include "chrome/browser/prefs/pref_change_registrar.h" | |
22 #include "chrome/browser/prefs/pref_service.h" | 22 #include "chrome/browser/prefs/pref_service.h" |
23 #include "chrome/browser/profiles/profile.h" | 23 #include "chrome/browser/profiles/profile.h" |
24 #include "chrome/browser/profiles/profile_manager.h" | 24 #include "chrome/browser/profiles/profile_manager.h" |
25 #include "chrome/browser/safe_browsing/client_side_detection_service.h" | 25 #include "chrome/browser/safe_browsing/client_side_detection_service.h" |
26 #include "chrome/browser/safe_browsing/download_protection_service.h" | 26 #include "chrome/browser/safe_browsing/download_protection_service.h" |
27 #include "chrome/browser/safe_browsing/malware_details.h" | 27 #include "chrome/browser/safe_browsing/malware_details.h" |
28 #include "chrome/browser/safe_browsing/protocol_manager.h" | 28 #include "chrome/browser/safe_browsing/protocol_manager.h" |
29 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" | 29 #include "chrome/browser/safe_browsing/safe_browsing_blocking_page.h" |
30 #include "chrome/browser/safe_browsing/safe_browsing_database.h" | 30 #include "chrome/browser/safe_browsing/safe_browsing_database.h" |
31 #include "chrome/browser/tab_contents/tab_util.h" | 31 #include "chrome/browser/tab_contents/tab_util.h" |
(...skipping 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1444 Stop(); | 1444 Stop(); |
1445 | 1445 |
1446 if (csd_service_.get()) | 1446 if (csd_service_.get()) |
1447 csd_service_->SetEnabledAndRefreshState(enable); | 1447 csd_service_->SetEnabledAndRefreshState(enable); |
1448 if (download_service_.get()) { | 1448 if (download_service_.get()) { |
1449 download_service_->SetEnabled( | 1449 download_service_->SetEnabled( |
1450 enable && !CommandLine::ForCurrentProcess()->HasSwitch( | 1450 enable && !CommandLine::ForCurrentProcess()->HasSwitch( |
1451 switches::kDisableImprovedDownloadProtection)); | 1451 switches::kDisableImprovedDownloadProtection)); |
1452 } | 1452 } |
1453 } | 1453 } |
OLD | NEW |