diff options
Diffstat (limited to 'cc')
-rw-r--r-- | cc/base/switches.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/cc/base/switches.cc b/cc/base/switches.cc index 1fbb16c..2470d5e 100644 --- a/cc/base/switches.cc +++ b/cc/base/switches.cc @@ -147,12 +147,7 @@ bool IsImplSidePaintingEnabled() { else if (command_line.HasSwitch(cc::switches::kEnableImplSidePainting)) return true; -// Check GOOGLE_TV ahead of OS_ANDROID as they are not orthogonal. -// TODO(jinsukkim): Remove this once the impl-side javascript-driven painting -// performance issue is addressed. (crbug.com/235347) -#if defined(GOOGLE_TV) - return false; -#elif defined(OS_ANDROID) +#if defined(OS_ANDROID) return true; #else return false; |