diff options
Diffstat (limited to 'chrome/browser/profiles/profile_manager_unittest.cc')
-rw-r--r-- | chrome/browser/profiles/profile_manager_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/profiles/profile_manager_unittest.cc b/chrome/browser/profiles/profile_manager_unittest.cc index 4e23a73..76cd7e8 100644 --- a/chrome/browser/profiles/profile_manager_unittest.cc +++ b/chrome/browser/profiles/profile_manager_unittest.cc @@ -27,7 +27,7 @@ #include "chrome/test/base/testing_browser_process.h" #include "chrome/test/base/testing_pref_service.h" #include "content/browser/browser_thread.h" -#include "content/common/notification_service.h" +#include "content/public/browser/notification_service.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" @@ -139,8 +139,8 @@ TEST_F(ProfileManagerTest, LoggedInProfileDir) { profile_manager_->GetInitialProfileDir().value()); profile_manager_->Observe(chrome::NOTIFICATION_LOGIN_USER_CHANGED, - NotificationService::AllSources(), - NotificationService::NoDetails()); + content::NotificationService::AllSources(), + content::NotificationService::NoDetails()); FilePath expected_logged_in(profile_dir); EXPECT_EQ(expected_logged_in.value(), profile_manager_->GetInitialProfileDir().value()); |