Chromium Code Reviews| Index: chrome/browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.h |
| diff --git a/chrome/browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.h b/chrome/browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e18f08fec656b5bcd92b6b5163405b500a104db2 |
| --- /dev/null |
| +++ b/chrome/browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZER_WIN_H_ |
| +#define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZER_WIN_H_ |
| + |
| +#include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_analyzer.h" |
| + |
| +#include <vector> |
| + |
| +namespace base { |
| +class FilePath; |
| +} // namespace base |
| + |
| +namespace safe_browsing { |
| + |
| +// Returns a vector containing the paths to all the binaries to verify. |
| +std::vector<base::FilePath> GetCriticalBinariesPath(); |
| + |
| +} // namespace safe_browsing |
| + |
| +#endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZER_WIN_H_ |
| + |
|
Robert Sesek
2015/11/02 19:42:12
nit: extra blank line
|