| Index: chrome/browser/safe_browsing/module_integrity_unittest_util_win.cc
|
| diff --git a/chrome/browser/safe_browsing/module_integrity_unittest_util_win.cc b/chrome/browser/safe_browsing/module_integrity_unittest_util_win.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9e2110d986c0f7639ea9f391427c256eff065788
|
| --- /dev/null
|
| +++ b/chrome/browser/safe_browsing/module_integrity_unittest_util_win.cc
|
| @@ -0,0 +1,20 @@
|
| +// Copyright 2014 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.
|
| +
|
| +#include "chrome/browser/safe_browsing/module_integrity_unittest_util_win.h"
|
| +
|
| +#include "base/macros.h"
|
| +
|
| +namespace safe_browsing {
|
| +
|
| +const wchar_t* const kTestDllNames[] = {
|
| + L"verifier_test_dll_1.dll",
|
| + L"verifier_test_dll_2.dll",
|
| +};
|
| +
|
| +const size_t kTestDllNamesCount = arraysize(kTestDllNames);
|
| +
|
| +const char kTestExportName[] = "DummyExport";
|
| +
|
| +} // namespace safe_browsing
|
|
|