diff options
-rw-r--r-- | content/gpu/gpu_info_collector.cc | 2 | ||||
-rw-r--r-- | content/gpu/gpu_info_collector_linux.cc | 2 | ||||
-rw-r--r-- | content/gpu/gpu_main.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/content/gpu/gpu_info_collector.cc b/content/gpu/gpu_info_collector.cc index cb9368c..1838be1 100644 --- a/content/gpu/gpu_info_collector.cc +++ b/content/gpu/gpu_info_collector.cc @@ -82,7 +82,7 @@ bool CollectGraphicsInfoGL(GPUInfo* gpu_info) { DCHECK(gpu_info); if (!gfx::GLSurface::InitializeOneOff()) { - LOG(ERROR) << "gfx::GLContext::InitializeOneOff() failed"; + LOG(ERROR) << "gfx::GLSurface::InitializeOneOff() failed"; return false; } diff --git a/content/gpu/gpu_info_collector_linux.cc b/content/gpu/gpu_info_collector_linux.cc index 0cf5b52..bcd1a78 100644 --- a/content/gpu/gpu_info_collector_linux.cc +++ b/content/gpu/gpu_info_collector_linux.cc @@ -213,7 +213,7 @@ bool CollectPreliminaryGraphicsInfo(GPUInfo* gpu_info) { DCHECK(gpu_info); if (!gfx::GLSurface::InitializeOneOff()) { - LOG(ERROR) << "gfx::GLContext::InitializeOneOff() failed"; + LOG(ERROR) << "gfx::GLSurface::InitializeOneOff() failed"; return false; } diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc index b29323f..e3217109 100644 --- a/content/gpu/gpu_main.cc +++ b/content/gpu/gpu_main.cc @@ -69,7 +69,7 @@ int GpuMain(const MainFunctionParams& parameters) { // watchdog because this can take a lot of time and the GPU watchdog might // terminate the GPU process. if (!gfx::GLSurface::InitializeOneOff()) { - LOG(INFO) << "GLContext::InitializeOneOff failed"; + LOG(INFO) << "gfx::GLSurface::InitializeOneOff failed"; dead_on_arrival = true; } |