Chromium Code Reviews| Index: chrome/browser/conflicts/module_info_util_win.h |
| diff --git a/chrome/browser/conflicts/module_info_util_win.h b/chrome/browser/conflicts/module_info_util_win.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ba754f67d03afa59ca848d1787a773678ce8d8f4 |
| --- /dev/null |
| +++ b/chrome/browser/conflicts/module_info_util_win.h |
| @@ -0,0 +1,15 @@ |
| +// Copyright 2017 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_CONFLICTS_MODULE_INFO_UTIL_WIN_H_ |
| +#define CHROME_BROWSER_CONFLICTS_MODULE_INFO_UTIL_WIN_H_ |
| + |
| +#include "chrome/browser/conflicts/module_database_win.h" |
| + |
| +// Extracts information about the certificate of the given |file|, populating |
| +// |cert_info|. It is expected that |cert_info| be freshly constructed. |
| +void GetCertificateInfo(const base::FilePath& file, |
|
Patrick Monette
2017/01/26 20:49:07
Is it too much trouble to remove the duplicate cod
chrisha
2017/02/06 18:38:46
Done!
|
| + ModuleDatabase::CertificateInfo* cert_info); |
| + |
| +#endif // CHROME_BROWSER_CONFLICTS_MODULE_INFO_UTIL_WIN_H_ |