| Index: chrome/browser/extensions/external_provider_impl.cc
|
| diff --git a/chrome/browser/extensions/external_provider_impl.cc b/chrome/browser/extensions/external_provider_impl.cc
|
| index 8ffd5eaa6604c277cfcf1c4c832ba70398211295..336b8bf71d7a7a123a55d58c7051005884dda8aa 100644
|
| --- a/chrome/browser/extensions/external_provider_impl.cc
|
| +++ b/chrome/browser/extensions/external_provider_impl.cc
|
| @@ -429,7 +429,7 @@ void ExternalProviderImpl::CreateExternalProviders(
|
| #endif
|
|
|
| #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
| - if (!profile->IsManaged()) {
|
| + if (!profile->IsSupervised()) {
|
| provider_list->push_back(
|
| linked_ptr<ExternalProviderInterface>(
|
| new ExternalProviderImpl(
|
| @@ -446,8 +446,8 @@ void ExternalProviderImpl::CreateExternalProviders(
|
|
|
| #if defined(OS_CHROMEOS)
|
| if (!is_chromeos_demo_session && !is_chrome_os_public_session) {
|
| - int external_apps_path_id = profile->IsManaged() ?
|
| - chrome::DIR_MANAGED_USERS_DEFAULT_APPS :
|
| + int external_apps_path_id = profile->IsSupervised() ?
|
| + chrome::DIR_SUPERVISED_USERS_DEFAULT_APPS :
|
| chrome::DIR_STANDALONE_EXTERNAL_EXTENSIONS;
|
| provider_list->push_back(
|
| linked_ptr<ExternalProviderInterface>(new ExternalProviderImpl(
|
| @@ -488,7 +488,7 @@ void ExternalProviderImpl::CreateExternalProviders(
|
| }
|
| #endif
|
|
|
| - if (!profile->IsManaged() && !is_chromeos_demo_session) {
|
| + if (!profile->IsSupervised() && !is_chromeos_demo_session) {
|
| #if !defined(OS_WIN)
|
| provider_list->push_back(
|
| linked_ptr<ExternalProviderInterface>(
|
|
|