OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/incident_reporting/binary_integrity_analy
zer.h" | 5 #include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_analy
zer.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
13 #include "base/memory/ptr_util.h" | 13 #include "base/memory/ptr_util.h" |
14 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram_macros.h" |
15 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
16 #include "base/strings/string_util.h" | 16 #include "base/strings/string_util.h" |
17 #include "base/strings/stringprintf.h" | 17 #include "base/strings/stringprintf.h" |
18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
19 #include "build/build_config.h" | 19 #include "build/build_config.h" |
20 #include "chrome/browser/browser_process.h" | 20 #include "chrome/browser/browser_process.h" |
21 #include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_incid
ent.h" | 21 #include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_incid
ent.h" |
22 #include "chrome/browser/safe_browsing/incident_reporting/incident_receiver.h" | 22 #include "chrome/browser/safe_browsing/incident_reporting/incident_receiver.h" |
23 #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 23 #include "chrome/browser/safe_browsing/safe_browsing_service.h" |
24 #include "chrome/common/safe_browsing/csd.pb.h" | 24 #include "chrome/common/safe_browsing/csd.pb.h" |
(...skipping 27 matching lines...) Expand all Loading... |
52 #if defined(OS_WIN) || defined(OS_MACOSX) | 52 #if defined(OS_WIN) || defined(OS_MACOSX) |
53 scoped_refptr<SafeBrowsingService> safe_browsing_service( | 53 scoped_refptr<SafeBrowsingService> safe_browsing_service( |
54 g_browser_process->safe_browsing_service()); | 54 g_browser_process->safe_browsing_service()); |
55 | 55 |
56 safe_browsing_service->RegisterDelayedAnalysisCallback( | 56 safe_browsing_service->RegisterDelayedAnalysisCallback( |
57 base::Bind(&VerifyBinaryIntegrity)); | 57 base::Bind(&VerifyBinaryIntegrity)); |
58 #endif | 58 #endif |
59 } | 59 } |
60 | 60 |
61 } // namespace safe_browsing | 61 } // namespace safe_browsing |
OLD | NEW |