Fixed log messages about failed initialization of GLSurface.
Review URL: http://codereview.chromium.org/8343006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106104 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user