| Index: android_webview/common/aw_content_client.cc
|
| diff --git a/android_webview/common/aw_content_client.cc b/android_webview/common/aw_content_client.cc
|
| index b6f708e035f29877763844f37bc6739f454fa58b..353da6a846f20eb8589e8a9a660d8ea89e0de73f 100644
|
| --- a/android_webview/common/aw_content_client.cc
|
| +++ b/android_webview/common/aw_content_client.cc
|
| @@ -14,7 +14,6 @@
|
| #include "content/public/common/content_switches.h"
|
| #include "content/public/common/user_agent.h"
|
| #include "gpu/config/gpu_info.h"
|
| -#include "gpu/config/gpu_util.h"
|
| #include "ipc/ipc_message.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| @@ -84,7 +83,14 @@
|
| std::replace_if(gpu_fingerprint_.begin(), gpu_fingerprint_.end(),
|
| [](char c) { return !::isprint(c); }, '_');
|
|
|
| - gpu::SetKeysForCrashLogging(gpu_info);
|
| + base::debug::SetCrashKeyValue(crash_keys::kGPUDriverVersion,
|
| + gpu_info.driver_version);
|
| + base::debug::SetCrashKeyValue(crash_keys::kGPUPixelShaderVersion,
|
| + gpu_info.pixel_shader_version);
|
| + base::debug::SetCrashKeyValue(crash_keys::kGPUVertexShaderVersion,
|
| + gpu_info.vertex_shader_version);
|
| + base::debug::SetCrashKeyValue(crash_keys::kGPUVendor, gpu_info.gl_vendor);
|
| + base::debug::SetCrashKeyValue(crash_keys::kGPURenderer, gpu_info.gl_renderer);
|
| }
|
|
|
| bool AwContentClient::UsingSynchronousCompositing() {
|
|
|