| Index: chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc b/chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc
|
| index 5a3976cb2cd1f8477f085078a381db28697ca9d8..dba9a9350018cf60a0529038b768107b4689dea5 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/storage_manager_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/storage_manager_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"
|
| @@ -411,9 +411,9 @@ void StorageManagerHandler::UpdateArcSize() {
|
| updating_arc_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;
|
| }
|
|
|
|
|