| 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 e89ab289fc2f456793922de089a21f1a9c20fe0b..858fab411039767bd1a1bb7e0f9fa1048780573a 100644
|
| --- a/chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc
|
| +++ b/chrome/browser/ui/webui/settings/chromeos/device_storage_handler.cc
|
| @@ -21,7 +21,7 @@
|
| #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
|
| #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_auth_service.h"
|
| +#include "chrome/browser/chromeos/arc/arc_session_manager.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"
|
| @@ -345,9 +345,9 @@ void StorageHandler::UpdateAndroidSize() {
|
| updating_android_size_ = true;
|
|
|
| Profile* const profile = Profile::FromWebUI(web_ui());
|
| - if (!arc::ArcAuthService::IsAllowedForProfile(profile) ||
|
| - arc::ArcAuthService::IsOptInVerificationDisabled() ||
|
| - !arc::ArcAuthService::Get()->IsArcEnabled()) {
|
| + if (!arc::ArcSessionManager::IsAllowedForProfile(profile) ||
|
| + arc::ArcSessionManager::IsOptInVerificationDisabled() ||
|
| + !arc::ArcSessionManager::Get()->IsArcEnabled()) {
|
| return;
|
| }
|
|
|
|
|