root/chrome/browser/install_verification/win/imported_module_verification.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


// Copyright 2013 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_INSTALL_VERIFICATION_WIN_IMPORTED_MODULE_VERIFICATION_H_
#define CHROME_BROWSER_INSTALL_VERIFICATION_WIN_IMPORTED_MODULE_VERIFICATION_H_

#include <set>

#include "chrome/browser/install_verification/win/module_ids.h"
#include "chrome/browser/install_verification/win/module_verification_common.h"

struct ModuleInfo;

// Verifies module imports using the provided |loaded_modules| info and the
// expected |module_ids|. Reports results to |delegate|.
void VerifyImportedModules(const std::set<ModuleInfo>& loaded_modules,
                           const ModuleIDs& module_ids,
                           ModuleVerificationDelegate* delegate);

#endif  // CHROME_BROWSER_INSTALL_VERIFICATION_WIN_IMPORTED_MODULE_VERIFICATION_H_

/* [<][>][^][v][top][bottom][index][help] */