summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorccameron <ccameron@chromium.org>2015-11-23 19:42:10 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-24 03:43:38 +0000
commitc871e30d3ab91600b4081b3b90f5aa209ef64409 (patch)
tree1a209c3424c7f5270309434bf0a8b6490f6951f2
parentc810c58eb97acfa92c1f6018082ccabf2df19930 (diff)
downloadchromium_src-c871e30d3ab91600b4081b3b90f5aa209ef64409.zip
chromium_src-c871e30d3ab91600b4081b3b90f5aa209ef64409.tar.gz
chromium_src-c871e30d3ab91600b4081b3b90f5aa209ef64409.tar.bz2
Revert of Disable kEnableGpuMemoryBufferCompositorResources on Mac (patchset #1 id:1 of https://codereview.chromium.org/1435133003/ )
Reason for revert: This is no longer needed now that 48 has branched and https://codereview.chromium.org/1463853002/ is landed. Original issue's description: > Disable kEnableGpuMemoryBufferCompositorResources on Mac > > This caused an uptick in crashes due to GpuMemoryBuffers failing to > allocate. > > BUG=554541 > TBR=reveman > > Committed: https://crrev.com/c5b6a85810bd669a3916587ac4d70ac566351258 > Cr-Commit-Position: refs/heads/master@{#359396} TBR= NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=554541 Review URL: https://codereview.chromium.org/1470213002 Cr-Commit-Position: refs/heads/master@{#361248}
-rw-r--r--content/browser/gpu/compositor_util.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc
index 895044d..10f507b 100644
--- a/content/browser/gpu/compositor_util.cc
+++ b/content/browser/gpu/compositor_util.cc
@@ -240,9 +240,7 @@ bool IsGpuMemoryBufferCompositorResourcesEnabled() {
return false;
#if defined(OS_MACOSX)
- // Disabled due to increased crash rates.
- // http://crbug.com/554541
- return false;
+ return true;
#else
return false;
#endif