Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: chrome_elf/chrome_elf_constants.h

Issue 1851213002: Remove sandbox on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nacl compile issues Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome_elf/chrome_elf.ver ('k') | chrome_elf/chrome_elf_constants.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // A handful of resource-like constants related to the ChromeELF.
6
7 #ifndef CHROME_ELF_CHROME_ELF_CONSTANTS_H_
8 #define CHROME_ELF_CHROME_ELF_CONSTANTS_H_
9
10 #include <windows.h>
11
12 namespace blacklist {
13
14 // The registry path of the blacklist beacon.
15 extern const wchar_t kRegistryBeaconPath[];
16
17 // The registry path of the finch blacklist dlls.
18 extern const wchar_t kRegistryFinchListPath[];
19
20 // The properties for the blacklist beacon.
21 extern const wchar_t kBeaconVersion[];
22 extern const wchar_t kBeaconState[];
23 extern const wchar_t kBeaconAttemptCount[];
24
25 // The number of failures that can occur on startup with the beacon enabled
26 // before we give up and turn off the blacklist.
27 extern const DWORD kBeaconMaxAttempts;
28
29 // The states for the blacklist setup code.
30 enum BlacklistState {
31 BLACKLIST_DISABLED = 0,
32 BLACKLIST_ENABLED,
33 // The blacklist setup code is running. If this is the state at startup, it
34 // means the last setup crashed.
35 BLACKLIST_SETUP_RUNNING,
36 // If the last setup crashed, we reassign the state to failed.
37 BLACKLIST_SETUP_FAILED,
38 // Always keep this at the end.
39 BLACKLIST_STATE_MAX,
40 };
41
42 } // namespace blacklist
43
44 #endif // CHROME_ELF_CHROME_ELF_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome_elf/chrome_elf.ver ('k') | chrome_elf/chrome_elf_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698