diff options
author | sievers@google.com <sievers@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-15 22:22:06 +0000 |
---|---|---|
committer | sievers@google.com <sievers@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-15 22:22:06 +0000 |
commit | 953e5c6f1a5b950476314f41f761fef497157cab (patch) | |
tree | a1ea9473e031728d4722a183f7b3abf743b9403b | |
parent | 774688b2be8580108431061b0113cd1ce1c7cf06 (diff) | |
download | chromium_src-953e5c6f1a5b950476314f41f761fef497157cab.zip chromium_src-953e5c6f1a5b950476314f41f761fef497157cab.tar.gz chromium_src-953e5c6f1a5b950476314f41f761fef497157cab.tar.bz2 |
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
-rw-r--r-- | content/browser/aura/gpu_process_transport_factory.cc | 6 |
1 files changed, 1 insertions, 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<cc::ContextProvider> 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); |