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

Unified Diff: chrome/browser/ui/bookmarks/bookmark_utils.cc

Issue 16172005: Clean up async app launcher enabled checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test Created 7 years, 7 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
Index: chrome/browser/ui/bookmarks/bookmark_utils.cc
diff --git a/chrome/browser/ui/bookmarks/bookmark_utils.cc b/chrome/browser/ui/bookmarks/bookmark_utils.cc
index e6df9f0f7ad722bbef0b9160f42db96083d477f4..20e76756a7767da651832026e00b93a0ad32e585 100644
--- a/chrome/browser/ui/bookmarks/bookmark_utils.cc
+++ b/chrome/browser/ui/bookmarks/bookmark_utils.cc
@@ -276,7 +276,7 @@ string16 FormatBookmarkURLForDisplay(const GURL& url,
bool IsAppsShortcutEnabled(const Profile* profile) {
#if defined(USE_ASH)
// Don't show the apps shortcut in ash when the app launcher is enabled.
- if (apps::WasAppLauncherEnabled())
+ if (apps::IsAppLauncherEnabled())
return false;
#endif

Powered by Google App Engine
This is Rietveld 408576698