| Index: content/browser/gpu/gpu_internals_ui.cc
|
| diff --git a/content/browser/gpu/gpu_internals_ui.cc b/content/browser/gpu/gpu_internals_ui.cc
|
| index 118a4ec54b2fd82e361f9354e27f8df8a2f05fe3..01b0dc46f4692fe7c3b6028144ee4a5ee8498e96 100644
|
| --- a/content/browser/gpu/gpu_internals_ui.cc
|
| +++ b/content/browser/gpu/gpu_internals_ui.cc
|
| @@ -182,15 +182,11 @@ base::DictionaryValue* GpuInfoAsDictionaryValue() {
|
| }
|
|
|
| // Determine if accelerated-2d-canvas is supported, which depends on whether
|
| -// lose_context could happen and whether skia is the backend.
|
| +// lose_context could happen.
|
| bool SupportsAccelerated2dCanvas() {
|
| if (GpuDataManagerImpl::GetInstance()->GetGPUInfo().can_lose_context)
|
| return false;
|
| -#if defined(USE_SKIA)
|
| return true;
|
| -#else
|
| - return false;
|
| -#endif
|
| }
|
|
|
| base::Value* GetFeatureStatus() {
|
| @@ -577,11 +573,7 @@ base::Value* GpuMessageHandler::OnRequestClientInfo(
|
| base::SysInfo::OperatingSystemName() + " " +
|
| base::SysInfo::OperatingSystemVersion());
|
| dict->SetString("angle_revision", base::UintToString(BUILD_REVISION));
|
| -#if defined(USE_SKIA)
|
| dict->SetString("graphics_backend", "Skia");
|
| -#else
|
| - dict->SetString("graphics_backend", "Core Graphics");
|
| -#endif
|
| dict->SetString("blacklist_version",
|
| GpuDataManagerImpl::GetInstance()->GetBlacklistVersion());
|
|
|
|
|