diff options
author | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-18 19:35:19 +0000 |
---|---|---|
committer | alokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-18 19:35:19 +0000 |
commit | 51dd1b487d4f2310d532b68f68a2fbb9ee5e92d2 (patch) | |
tree | 7964cb7259d5874249db970652d276d6459350e5 | |
parent | 268b8621c2d5999554eb5ff10678c9783afdbec4 (diff) | |
download | chromium_src-51dd1b487d4f2310d532b68f68a2fbb9ee5e92d2.zip chromium_src-51dd1b487d4f2310d532b68f68a2fbb9ee5e92d2.tar.gz chromium_src-51dd1b487d4f2310d532b68f68a2fbb9ee5e92d2.tar.bz2 |
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
-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; } |