summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbauman <jbauman@chromium.org>2015-01-15 19:20:06 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-16 03:20:41 +0000
commit8a7bd07d02b176532e24d71776fe359bc949146d (patch)
treef0cff9fcc47e80df196f887fa797984c265af8bb
parentaa498cbeed50f119e76f08d2681b136325f191df (diff)
downloadchromium_src-8a7bd07d02b176532e24d71776fe359bc949146d.zip
chromium_src-8a7bd07d02b176532e24d71776fe359bc949146d.tar.gz
chromium_src-8a7bd07d02b176532e24d71776fe359bc949146d.tar.bz2
Enable Surfaces on Android.
All the contents (browser and renderer) are put into a single Surface. BUG=449319 Review URL: https://codereview.chromium.org/847423002 Cr-Commit-Position: refs/heads/master@{#311830}
-rw-r--r--content/browser/gpu/compositor_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc
index 444f43c..2644a20 100644
--- a/content/browser/gpu/compositor_util.cc
+++ b/content/browser/gpu/compositor_util.cc
@@ -296,7 +296,7 @@ bool IsForceGpuRasterizationEnabled() {
bool UseSurfacesEnabled() {
#if defined(OS_ANDROID)
- return false;
+ return true;
#else
const base::CommandLine& command_line =
*base::CommandLine::ForCurrentProcess();