Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Unified Diff: ui/app_list/app_list_switches.cc

Issue 634413002: app_list: Disable Drive app integration for M39. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove useless disable flag Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/app_list_switches.cc
diff --git a/ui/app_list/app_list_switches.cc b/ui/app_list/app_list_switches.cc
index ec2ea1cf8a3019c8917e46fd62f577042417367e..f53ee8e4054903fd3378ecee160358ac26c369a8 100644
--- a/ui/app_list/app_list_switches.cc
+++ b/ui/app_list/app_list_switches.cc
@@ -78,8 +78,9 @@ bool IsCenteredAppListEnabled() {
bool IsDriveAppsInAppListEnabled() {
#if defined(OS_CHROMEOS)
- return !CommandLine::ForCurrentProcess()->HasSwitch(
- kDisableDriveAppsInAppList);
+ // Disable Drive app integration due to http://crbug.com/420034
+ // TODO(xiyuan): Revisit this after the bug is fixed.
+ return false;
#else
return false;
#endif
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698