// Copyright 2013 The Chromium Authors
// 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_MODULE_VERIFICATION_TEST_H_
#define CHROME_BROWSER_INSTALL_VERIFICATION_WIN_MODULE_VERIFICATION_TEST_H_

#include <stddef.h>

#include <set>

#include "testing/gtest/include/gtest/gtest.h"

struct ModuleInfo;

class ModuleVerificationTest : public testing::Test {
 public:
  ModuleVerificationTest();
  ~ModuleVerificationTest() override;

  void SetUp() override;

 protected:
  bool GetLoadedModuleInfoSet(std::set<ModuleInfo>* loaded_module_info_set);

  void ReportModule(size_t module_id);

  std::set<size_t> reported_module_ids_;
};

#endif  // CHROME_BROWSER_INSTALL_VERIFICATION_WIN_MODULE_VERIFICATION_TEST_H_

