1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_INSTALL_VERIFICATION_WIN_IMPORTED_MODULE_VERIFICATION_H_
6 #define CHROME_BROWSER_INSTALL_VERIFICATION_WIN_IMPORTED_MODULE_VERIFICATION_H_
10 #include "chrome/browser/install_verification/win/module_ids.h"
11 #include "chrome/browser/install_verification/win/module_verification_common.h"
15 // Verifies module imports using the provided |loaded_modules| info and the
16 // expected |module_ids|. Reports results to |delegate|.
17 void VerifyImportedModules(const std::set
<ModuleInfo
>& loaded_modules
,
18 const ModuleIDs
& module_ids
,
19 ModuleVerificationDelegate
* delegate
);
21 #endif // CHROME_BROWSER_INSTALL_VERIFICATION_WIN_IMPORTED_MODULE_VERIFICATION_H_