0

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:
alokp@chromium.org
2011-10-18 19:35:19 +00:00
parent 268b8621c2
commit 51dd1b487d
3 changed files with 3 additions and 3 deletions

@ -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;
}