Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Unified Diff: chrome/browser/ui/views/ash/status_area_host_aura_browsertest.cc

Issue 9355059: Renaming virtual setters/getters in UserManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: year Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/ash/status_area_host_aura_browsertest.cc
diff --git a/chrome/browser/ui/views/ash/status_area_host_aura_browsertest.cc b/chrome/browser/ui/views/ash/status_area_host_aura_browsertest.cc
index 0dac9fd36ef9aa2b32d6ba0071e94e03e5bb4ec1..f2780d8a8da307c5f358c21aa30f5899fac4166f 100644
--- a/chrome/browser/ui/views/ash/status_area_host_aura_browsertest.cc
+++ b/chrome/browser/ui/views/ash/status_area_host_aura_browsertest.cc
@@ -33,7 +33,7 @@ IN_PROC_BROWSER_TEST_F(StatusAreaHostAuraTest, TextStyle) {
StatusAreaHostAura* host = delegate->status_area_host();
#if defined(OS_CHROMEOS)
- ASSERT_FALSE(chromeos::UserManager::Get()->user_is_logged_in());
+ ASSERT_FALSE(chromeos::UserManager::Get()->IsUserLoggedIn());
if (chromeos::system::runtime_environment::IsRunningOnChromeOS()) {
EXPECT_EQ(StatusAreaButton::GRAY_PLAIN_LIGHT,
host->GetStatusAreaTextStyle());
@@ -52,7 +52,7 @@ IN_PROC_BROWSER_TEST_F(StatusAreaHostAuraTest, TextStyle) {
CommandLine::ForCurrentProcess()->AppendSwitchNative(
switches::kLoginProfile, "StatusAreaHostAuraTest");
chromeos::UserManager::Get()->UserLoggedIn("foo@example.com");
- ASSERT_TRUE(chromeos::UserManager::Get()->user_is_logged_in());
+ ASSERT_TRUE(chromeos::UserManager::Get()->IsUserLoggedIn());
#endif
Browser* browser = CreateBrowser(ProfileManager::GetDefaultProfile());

Powered by Google App Engine
This is Rietveld 408576698