diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/gpu/config/gpu_info_unittest.cc | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/gpu/config/gpu_info_unittest.cc')
-rw-r--r-- | chromium/gpu/config/gpu_info_unittest.cc | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/chromium/gpu/config/gpu_info_unittest.cc b/chromium/gpu/config/gpu_info_unittest.cc index 13bb5d38eff..3bd092c8fdc 100644 --- a/chromium/gpu/config/gpu_info_unittest.cc +++ b/chromium/gpu/config/gpu_info_unittest.cc @@ -16,7 +16,6 @@ class TestGPUInfoEnumerator : public gpu::GPUInfo::Enumerator { video_decode_accelerator_profile_active_(false), video_encode_accelerator_profile_active_(false), image_decode_accelerator_profile_active_(false), - dx12_vulkan_version_info_active_(false), overlay_info_active_(false), aux_attributes_active_(false) {} @@ -63,14 +62,6 @@ class TestGPUInfoEnumerator : public gpu::GPUInfo::Enumerator { image_decode_accelerator_profile_active_ = false; } - void BeginDx12VulkanVersionInfo() override { - dx12_vulkan_version_info_active_ = true; - } - - void EndDx12VulkanVersionInfo() override { - dx12_vulkan_version_info_active_ = false; - } - void BeginOverlayInfo() override { overlay_info_active_ = true; } void EndOverlayInfo() override { overlay_info_active_ = false; } @@ -94,10 +85,6 @@ class TestGPUInfoEnumerator : public gpu::GPUInfo::Enumerator { return image_decode_accelerator_profile_active_; } - bool dx12_vulkan_version_info_active() const { - return dx12_vulkan_version_info_active_; - } - bool aux_attributes_active() const { return aux_attributes_active_; } private: @@ -105,7 +92,6 @@ class TestGPUInfoEnumerator : public gpu::GPUInfo::Enumerator { bool video_decode_accelerator_profile_active_; bool video_encode_accelerator_profile_active_; bool image_decode_accelerator_profile_active_; - bool dx12_vulkan_version_info_active_; bool overlay_info_active_; bool aux_attributes_active_; }; @@ -121,7 +107,6 @@ TEST(GpuInfoTest, FieldEditStates) { EXPECT_FALSE(enumerator.video_decode_accelerator_profile_active()); EXPECT_FALSE(enumerator.video_encode_accelerator_profile_active()); EXPECT_FALSE(enumerator.image_decode_accelerator_profile_active()); - EXPECT_FALSE(enumerator.dx12_vulkan_version_info_active()); EXPECT_FALSE(enumerator.aux_attributes_active()); } |