Index: chrome/browser/chromeos/file_system_provider/mount_path_util.cc |
diff --git a/chrome/browser/chromeos/file_system_provider/mount_path_util.cc b/chrome/browser/chromeos/file_system_provider/mount_path_util.cc |
index 3f20f3a362c35596d9cff348377fb005f15d210f..0456a7e7423ac410be25e4066cd675c70723f0c6 100644 |
--- a/chrome/browser/chromeos/file_system_provider/mount_path_util.cc |
+++ b/chrome/browser/chromeos/file_system_provider/mount_path_util.cc |
@@ -11,11 +11,11 @@ |
#include "chrome/browser/browser_process.h" |
#include "chrome/browser/chromeos/file_system_provider/provided_file_system.h" |
#include "chrome/browser/chromeos/file_system_provider/service.h" |
-#include "chrome/browser/chromeos/login/users/user.h" |
#include "chrome/browser/chromeos/login/users/user_manager.h" |
#include "chrome/browser/chromeos/profiles/profile_helper.h" |
#include "chrome/browser/profiles/profile.h" |
#include "chrome/browser/profiles/profile_manager.h" |
+#include "components/user_manager/user.h" |
#include "content/public/browser/browser_thread.h" |
using content::BrowserThread; |
@@ -50,7 +50,7 @@ std::string EscapeFileSystemId(const std::string& file_system_id) { |
base::FilePath GetMountPath(Profile* profile, |
const std::string& extension_id, |
const std::string& file_system_id) { |
- chromeos::User* const user = |
+ user_manager::User* const user = |
chromeos::UserManager::IsInitialized() |
? chromeos::ProfileHelper::Get()->GetUserByProfile( |
profile->GetOriginalProfile()) |