From 5335681cd2ab05ad47e81be7722c9eee19d54065 Mon Sep 17 00:00:00 2001 From: adeshkp Date: Sat, 12 Jan 2019 06:20:31 -0500 Subject: Telemetry: Remove stubs and related code --- gfx/src/DriverCrashGuard.cpp | 13 ------------- gfx/src/DriverCrashGuard.h | 12 ------------ 2 files changed, 25 deletions(-) (limited to 'gfx/src') diff --git a/gfx/src/DriverCrashGuard.cpp b/gfx/src/DriverCrashGuard.cpp index fd616575b..2303e9d66 100644 --- a/gfx/src/DriverCrashGuard.cpp +++ b/gfx/src/DriverCrashGuard.cpp @@ -411,10 +411,6 @@ D3D11LayersCrashGuard::Initialize() } DriverCrashGuard::Initialize(); - - // If no telemetry states have been recorded, this will set the state to okay. - // Otherwise, it will have no effect. - RecordTelemetry(TelemetryState::Okay); } bool @@ -447,30 +443,21 @@ D3D11LayersCrashGuard::UpdateEnvironment() return false; } - RecordTelemetry(TelemetryState::EnvironmentChanged); return true; } void D3D11LayersCrashGuard::LogCrashRecovery() { - RecordTelemetry(TelemetryState::RecoveredFromCrash); gfxCriticalNote << "D3D11 layers just crashed; D3D11 will be disabled."; } void D3D11LayersCrashGuard::LogFeatureDisabled() { - RecordTelemetry(TelemetryState::FeatureDisabled); gfxCriticalNote << "D3D11 layers disabled due to a prior crash."; } -void -D3D11LayersCrashGuard::RecordTelemetry(TelemetryState aState) -{ - /* STUB */ -} - D3D9VideoCrashGuard::D3D9VideoCrashGuard(dom::ContentParent* aContentParent) : DriverCrashGuard(CrashGuardType::D3D9Video, aContentParent) { diff --git a/gfx/src/DriverCrashGuard.h b/gfx/src/DriverCrashGuard.h index 9a0c5851a..8db9287c9 100644 --- a/gfx/src/DriverCrashGuard.h +++ b/gfx/src/DriverCrashGuard.h @@ -66,15 +66,6 @@ public: bool Crashed(); void NotifyCrashed(); - // These are the values reported to Telemetry (GRAPHICS_DRIVER_STARTUP_TEST). - // Values should not change; add new values to the end. - enum class TelemetryState { - Okay = 0, - EnvironmentChanged = 1, - RecoveredFromCrash = 2, - FeatureDisabled = 3 - }; - enum class Mode { // Normal operation. Normal, @@ -136,9 +127,6 @@ class D3D11LayersCrashGuard final : public DriverCrashGuard bool UpdateEnvironment() override; void LogCrashRecovery() override; void LogFeatureDisabled() override; - - private: - void RecordTelemetry(TelemetryState aState); }; class D3D9VideoCrashGuard final : public DriverCrashGuard -- cgit v1.2.3