Commit 47268feb authored by reveman@chromium.org's avatar reveman@chromium.org

cc: Enable impl-side painting by default on all platforms where threaded compositing is used.

BUG=169282

Review URL: https://codereview.chromium.org/242803007

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266471 0039d316-1c4b-4281-b951-d872f2087c98
parent a1710ba4
...@@ -181,11 +181,7 @@ bool IsImplSidePaintingEnabled() { ...@@ -181,11 +181,7 @@ bool IsImplSidePaintingEnabled() {
else if (command_line.HasSwitch(switches::kEnableImplSidePainting)) else if (command_line.HasSwitch(switches::kEnableImplSidePainting))
return true; return true;
#if defined(OS_ANDROID) return IsThreadedCompositingEnabled();
return true;
#else
return false;
#endif
} }
bool IsGpuRasterizationEnabled() { bool IsGpuRasterizationEnabled() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment