| Index: chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc
|
| diff --git a/chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc b/chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc
|
| index 0c507494185b27a816109ed4d75c04822c8240e6..345cbe192c108962d78d8314736e82cd80132ca4 100644
|
| --- a/chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc
|
| @@ -22,14 +22,12 @@
|
| #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h"
|
| #include "chrome/browser/browsing_data/browsing_data_service_worker_helper.h"
|
| #include "chrome/browser/chromeos/arc/arc_session_manager.h"
|
| -#include "chrome/browser/chromeos/arc/arc_util.h"
|
| #include "chrome/browser/chromeos/drive/file_system_util.h"
|
| #include "chrome/browser/chromeos/file_manager/path_util.h"
|
| #include "chrome/browser/platform_util.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/grit/generated_resources.h"
|
| #include "chromeos/cryptohome/homedir_methods.h"
|
| -#include "components/arc/arc_util.h"
|
| #include "components/browsing_data/content/conditional_cache_counting_helper.h"
|
| #include "components/drive/chromeos/file_system_interface.h"
|
| #include "components/user_manager/user_manager.h"
|
| @@ -351,8 +349,8 @@
|
| updating_android_size_ = true;
|
|
|
| Profile* const profile = Profile::FromWebUI(web_ui());
|
| - if (!arc::IsArcAllowedForProfile(profile) ||
|
| - arc::IsArcOptInVerificationDisabled() ||
|
| + if (!arc::ArcSessionManager::IsAllowedForProfile(profile) ||
|
| + arc::ArcSessionManager::IsOptInVerificationDisabled() ||
|
| !arc::ArcSessionManager::Get()->IsArcEnabled()) {
|
| return;
|
| }
|
|
|