xref: /aosp_15_r20/external/cronet/base/win/static_constants.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2019 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Defines constants needed before imports (like base.dll) are fully resolved.
6 // For example, constants defined here can be used by interceptions (i.e. hooks)
7 // in the sandbox, which run before imports are resolved, and can therefore only
8 // reference static variables.
9 
10 #ifndef BASE_WIN_STATIC_CONSTANTS_H_
11 #define BASE_WIN_STATIC_CONSTANTS_H_
12 
13 namespace base {
14 namespace win {
15 
16 extern const char kApplicationVerifierDllName[];
17 
18 }  // namespace win
19 }  // namespace base
20 
21 #endif  // BASE_WIN_STATIC_CONSTANTS_H_
22