Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / content / browser / devtools / devtools_system_info_handler.cc
index 4ade158..b503a50 100644 (file)
@@ -20,6 +20,7 @@ const char kAuxAttributes[] = "auxAttributes";
 const char kDeviceId[] = "deviceId";
 const char kDeviceString[] = "deviceString";
 const char kDevices[] = "devices";
+const char kDriverBugWorkarounds[] = "driverBugWorkarounds";
 const char kFeatureStatus[] = "featureStatus";
 const char kGPU[] = "gpu";
 const char kModelName[] = "modelName";
@@ -118,6 +119,8 @@ DevToolsSystemInfoHandler::OnGetInfo(
 
   gpu_dict->Set(kFeatureStatus,  GetFeatureStatus());
 
+  gpu_dict->Set(kDriverBugWorkarounds, GetDriverBugWorkarounds());
+
   base::DictionaryValue* system_dict = new base::DictionaryValue;
   system_dict->SetString(kModelName, gpu_info.machine_model);
   system_dict->Set(kGPU, gpu_dict);