Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE R_WIN_H_ | |
| 6 #define CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANALYZE R_WIN_H_ | |
| 7 | |
| 8 #include "chrome/browser/safe_browsing/incident_reporting/binary_integrity_analy zer.h" | |
| 9 | |
| 10 #include <vector> | |
| 11 | |
| 12 namespace base { | |
| 13 class FilePath; | |
| 14 } // namespace base | |
| 15 | |
| 16 namespace safe_browsing { | |
| 17 | |
| 18 // Returns a vector containing the paths to all the binaries to verify. | |
| 19 std::vector<base::FilePath> GetCriticalBinariesPath(); | |
| 20 | |
| 21 } // namespace safe_browsing | |
| 22 | |
| 23 #endif // CHROME_BROWSER_SAFE_BROWSING_INCIDENT_REPORTING_BINARY_INTEGRITY_ANAL YZER_WIN_H_ | |
| 24 | |
|
Robert Sesek
2015/11/02 19:42:12
nit: extra blank line
| |
| OLD | NEW |