| Index: chrome_elf/blacklist/blacklist.h
|
| diff --git a/chrome_elf/blacklist/blacklist.h b/chrome_elf/blacklist/blacklist.h
|
| index 2e21f20793e296cfff766cd3728cf6238f9fe154..779525f5bccb52c48f389cb1806bae5620672213 100644
|
| --- a/chrome_elf/blacklist/blacklist.h
|
| +++ b/chrome_elf/blacklist/blacklist.h
|
| @@ -17,30 +17,6 @@ const int kTroublesomeDllsMaxCount = 64;
|
| // The DLL blacklist.
|
| extern const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount];
|
|
|
| -// The registry path of the blacklist beacon.
|
| -extern const wchar_t kRegistryBeaconPath[];
|
| -
|
| -// The properties for the blacklist beacon.
|
| -extern const wchar_t kBeaconVersion[];
|
| -extern const wchar_t kBeaconState[];
|
| -
|
| -// The states for the blacklist setup code.
|
| -enum BlacklistState {
|
| - BLACKLIST_DISABLED = 0,
|
| - BLACKLIST_ENABLED,
|
| - // The blacklist setup code is running. If this is still set at startup,
|
| - // it means the last setup crashed.
|
| - BLACKLIST_SETUP_RUNNING,
|
| - // The blacklist thunk setup code is running. If this is still set at startup,
|
| - // it means the last setup crashed during thunk setup.
|
| - BLACKLIST_THUNK_SETUP,
|
| - // The blacklist code is currently intercepting MapViewOfSection. If this is
|
| - // still set at startup, it means we crashed during interception.
|
| - BLACKLIST_INTERCEPTING,
|
| - // Always keep this at the end.
|
| - BLACKLIST_STATE_MAX,
|
| -};
|
| -
|
| #if defined(_WIN64)
|
| extern NtMapViewOfSectionFunction g_nt_map_view_of_section_func;
|
| #endif
|
|
|