From 953e5c6f1a5b950476314f41f761fef497157cab Mon Sep 17 00:00:00 2001 From: "sievers@google.com" Date: Wed, 15 Jan 2014 22:22:06 +0000 Subject: Remove LOG(ERROR) This is not really an error in the case of sw compositing. BUG=329737 R=danakj@chromium.org Review URL: https://codereview.chromium.org/140023002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244991 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/aura/gpu_process_transport_factory.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/content/browser/aura/gpu_process_transport_factory.cc b/content/browser/aura/gpu_process_transport_factory.cc index 022d8d6..8250d47 100644 --- a/content/browser/aura/gpu_process_transport_factory.cc +++ b/content/browser/aura/gpu_process_transport_factory.cc @@ -292,11 +292,7 @@ gfx::GLSurfaceHandle GpuProcessTransportFactory::GetSharedSurfaceHandle() { // TODO(sievers): crbug.com/329737 // Creating the context here hurts startup performance. // Remove this once all tests are happy. - scoped_refptr provider = - SharedMainThreadContextProvider(); - LOG_IF(ERROR, !provider.get()) - << "Could not create shared context. CanUseBrowserCompositor() = " - << GpuDataManagerImpl::GetInstance()->CanUseGpuBrowserCompositor(); + SharedMainThreadContextProvider(); gfx::GLSurfaceHandle handle = gfx::GLSurfaceHandle( gfx::kNullPluginWindow, gfx::TEXTURE_TRANSPORT); -- cgit v1.1