| 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 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE
R_H_ | 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE
R_H_ |
| 6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE
R_H_ | 6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE
R_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 11 | 13 |
| 12 namespace base { | 14 namespace base { |
| 13 class FilePath; | 15 class FilePath; |
| 14 class TimeDelta; | 16 class TimeDelta; |
| 15 } // namespace base | 17 } // namespace base |
| 16 | 18 |
| 17 namespace safe_browsing { | 19 namespace safe_browsing { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 32 const base::TimeDelta& verification_time); | 34 const base::TimeDelta& verification_time); |
| 33 | 35 |
| 34 // Clear past incident reports for a file or bundle. This is used if the code | 36 // Clear past incident reports for a file or bundle. This is used if the code |
| 35 // object is now integral, as it will allow future incidents to be reported. | 37 // object is now integral, as it will allow future incidents to be reported. |
| 36 void ClearBinaryIntegrityForFile(IncidentReceiver* incident_receiver, | 38 void ClearBinaryIntegrityForFile(IncidentReceiver* incident_receiver, |
| 37 const std::string& basename); | 39 const std::string& basename); |
| 38 | 40 |
| 39 } // namespace safe_browsing | 41 } // namespace safe_browsing |
| 40 | 42 |
| 41 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANAL
YZER_H_ | 43 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANAL
YZER_H_ |
| OLD | NEW |