| Index: services/ui/gpu/gpu_service.cc
|
| diff --git a/services/ui/gpu/gpu_service.cc b/services/ui/gpu/gpu_service.cc
|
| index af091f30c7aac5f16256f4c0a09b589380d74d47..a6c0804f6fecae3831cf0d1514863ea324ebc882 100644
|
| --- a/services/ui/gpu/gpu_service.cc
|
| +++ b/services/ui/gpu/gpu_service.cc
|
| @@ -5,6 +5,7 @@
|
| #include "services/ui/gpu/gpu_service.h"
|
|
|
| #include "base/bind.h"
|
| +#include "base/debug/crash_logging.h"
|
| #include "base/memory/shared_memory.h"
|
| #include "base/threading/thread_task_runner_handle.h"
|
| #include "build/build_config.h"
|
| @@ -151,7 +152,8 @@ void GpuService::SendAcceleratedSurfaceCreatedChildWindow(
|
| #endif
|
|
|
| void GpuService::SetActiveURL(const GURL& url) {
|
| - // TODO(penghuang): implement this function.
|
| + constexpr char kActiveURL[] = "url-chunk";
|
| + base::debug::SetCrashKeyValue(kActiveURL, url.possibly_invalid_spec());
|
| }
|
|
|
| void GpuService::EstablishGpuChannel(
|
|
|