blob: 14afd7274c8b999269beee6c6b0bd1d0e4a039f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 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 WIN8_TEST_TEST_REGISTRAR_CONSTANTS_H__
#define WIN8_TEST_TEST_REGISTRAR_CONSTANTS_H__
namespace win8 {
namespace test {
extern const char kTestAppUserModelId[];
extern const char kTestExeName[];
extern const char kTestExePath[];
extern const char kTestProgId[];
extern const wchar_t kDefaultTestAppUserModelId[];
extern const wchar_t kDefaultTestExeName[];
extern const wchar_t kDefaultTestExePath[];
extern const wchar_t kDefaultTestProgId[];
} // namespace test
} // namespace win8
#endif // WIN8_TEST_TEST_REGISTRAR_CONSTANTS_H__
|