mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
Telemetry: add WebView init failure errors
This commit is contained in:
17
src/settings/trace.h
Normal file
17
src/settings/trace.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
class Trace
|
||||
{
|
||||
public:
|
||||
enum class SettingsInitErrorCause : int32_t
|
||||
{
|
||||
WebViewInitAsyncError,
|
||||
WebViewInitWinRTException,
|
||||
FailedToDropPrivileges,
|
||||
};
|
||||
|
||||
static void SettingsInitError(const SettingsInitErrorCause error_cause);
|
||||
|
||||
static void RegisterProvider() noexcept;
|
||||
static void UnregisterProvider() noexcept;
|
||||
};
|
||||
Reference in New Issue
Block a user