Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/AppLifecycle/AppInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ namespace winrt::Microsoft::Windows::AppLifecycle::implementation

// Notify the app that the redirection request is here.
m_activatedEvent(*this, args);
activity.RedrectionActivatedEvent(id);
activity.RedirectionActivatedEvent(id);

std::wstring eventName = name + c_activatedEventNameSuffix;
wil::unique_event cleanupEvent;
Expand Down
4 changes: 2 additions & 2 deletions dev/AppLifecycle/AppLifecycleTelemetry.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class AppLifecycleTelemetry : public wil::TraceLoggingProvider
CATCH_LOG()

DEFINE_TAGGED_COMPLIANT_MEASURES_EVENT_PARAM1(DequeueRedirectionRequest, PDT_ProductAndServicePerformance, GUID, requestId);
DEFINE_TAGGED_COMPLIANT_MEASURES_EVENT_PARAM1(RedrectionActivatedEvent, PDT_ProductAndServicePerformance, GUID, requestId);
DEFINE_TAGGED_COMPLIANT_MEASURES_EVENT_PARAM1(RedirectionActivatedEvent, PDT_ProductAndServicePerformance, GUID, requestId);
DEFINE_TAGGED_COMPLIANT_MEASURES_EVENT_PARAM1(RequestCleanupEvent, PDT_ProductAndServicePerformance, GUID, requestId);
END_ACTIVITY_CLASS();

Expand All @@ -53,6 +53,6 @@ class AppLifecycleTelemetry : public wil::TraceLoggingProvider
CATCH_LOG()

DEFINE_TAGGED_COMPLIANT_MEASURES_EVENT_PARAM1(InnerActivatedEvent, PDT_ProductAndServicePerformance, GUID, requestId);
END_ACTIVITY_CLASS()
END_ACTIVITY_CLASS();

};
Loading