| Index: chrome/browser/chromeos/drive/drive_notification_manager_factory_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/drive/drive_notification_manager_factory_browsertest.cc b/chrome/browser/chromeos/drive/drive_notification_manager_factory_browsertest.cc
|
| index 6773e65d5cd923dfacf015678ff5236f0004f1b4..3ce0b1bd2a9104768e0011b612b9ac9637cbfd6a 100644
|
| --- a/chrome/browser/chromeos/drive/drive_notification_manager_factory_browsertest.cc
|
| +++ b/chrome/browser/chromeos/drive/drive_notification_manager_factory_browsertest.cc
|
| @@ -6,13 +6,13 @@
|
|
|
| #include "base/command_line.h"
|
| #include "base/compiler_specific.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/common/chrome_switches.h"
|
| #include "chrome/test/base/in_process_browser_test.h"
|
| #include "chromeos/chromeos_switches.h"
|
| #include "chromeos/login/user_names.h"
|
| +#include "components/user_manager/user_manager.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace drive {
|
| @@ -52,7 +52,7 @@ class DriveNotificationManagerFactoryGuestBrowserTest
|
| // profile or the guest profile while a guest session is in progress.
|
| IN_PROC_BROWSER_TEST_F(DriveNotificationManagerFactoryGuestBrowserTest,
|
| NoDriveNotificationManager) {
|
| - chromeos::UserManager* user_manager = chromeos::UserManager::Get();
|
| + user_manager::UserManager* user_manager = user_manager::UserManager::Get();
|
| EXPECT_TRUE(user_manager->IsLoggedInAsGuest());
|
| Profile* guest_profile =
|
| chromeos::ProfileHelper::Get()
|
|
|