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

Unified Diff: chrome/browser/ui/app_list/search/app_search_provider.cc

Issue 2507073002: Split ArcSessionManager from ArcAuthService. (Closed)
Patch Set: Fix rebase mistake Created 4 years, 1 month 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/search/app_search_provider.cc
diff --git a/chrome/browser/ui/app_list/search/app_search_provider.cc b/chrome/browser/ui/app_list/search/app_search_provider.cc
index cf9a73c7cba50862a3d5a936bc12cc8c18ed9d4f..892f750a27068c93ef30339b2cbcfd2f19c0a221 100644
--- a/chrome/browser/ui/app_list/search/app_search_provider.cc
+++ b/chrome/browser/ui/app_list/search/app_search_provider.cc
@@ -256,7 +256,7 @@ AppSearchProvider::AppSearchProvider(Profile* profile,
data_sources_.push_back(
std::unique_ptr<DataSource>(new ExtensionDataSource(profile, this)));
#if defined(OS_CHROMEOS)
- if (arc::ArcAuthService::IsAllowedForProfile(profile)) {
+ if (arc::ArcSessionManager::IsAllowedForProfile(profile)) {
data_sources_.push_back(
std::unique_ptr<DataSource>(new ArcDataSource(profile, this)));
}

Powered by Google App Engine
This is Rietveld 408576698