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

Unified Diff: chrome/browser/ui/app_list/recommended_apps.cc

Issue 505913002: Remove implicit conversions from scoped_refptr to T* in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add {} Created 6 years, 4 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/app_list/recommended_apps.cc
diff --git a/chrome/browser/ui/app_list/recommended_apps.cc b/chrome/browser/ui/app_list/recommended_apps.cc
index f25543f061d04c8974966145593f0d4c8ed89ba7..121b1c92dda9606b0324d01858e317a5fa369453 100644
--- a/chrome/browser/ui/app_list/recommended_apps.cc
+++ b/chrome/browser/ui/app_list/recommended_apps.cc
@@ -69,7 +69,7 @@ void RecommendedApps::Update() {
for (extensions::ExtensionSet::const_iterator app = extensions.begin();
app != extensions.end();
++app) {
- if (!extensions::ui_util::ShouldDisplayInAppLauncher(*app, profile_))
+ if (!extensions::ui_util::ShouldDisplayInAppLauncher(app->get(), profile_))
continue;
sorted_apps.push_back(

Powered by Google App Engine
This is Rietveld 408576698