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

Unified Diff: chrome/browser/ui/ash/session_state_delegate_views.cc

Issue 15718003: Add SessionStateObserver with ActiveUserChanged() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge & add SessionStateDelegateChromeos Created 7 years, 6 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
« no previous file with comments | « chrome/browser/ui/ash/session_state_delegate_views.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/session_state_delegate_views.cc
diff --git a/chrome/browser/ui/ash/session_state_delegate_views.cc b/chrome/browser/ui/ash/session_state_delegate_views.cc
index f4aafd048a5a7485bd7cb70dcafcd9a87235cdc7..4aa773ab0cefdab1f85b507cb71ae7f05fd119b0 100644
--- a/chrome/browser/ui/ash/session_state_delegate_views.cc
+++ b/chrome/browser/ui/ash/session_state_delegate_views.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/ui/ash/session_state_delegate.h"
+#include "chrome/browser/ui/ash/session_state_delegate_views.h"
#include "base/logging.h"
#include "base/string16.h"
@@ -65,11 +65,20 @@ const gfx::ImageSkia& SessionStateDelegate::GetUserImage(
return null_image;
}
-void SessionStateDelegate::GetLoggedInUsers(
- ash::UserEmailList* users) {
+void SessionStateDelegate::GetLoggedInUsers(ash::UserIdList* users) {
NOTIMPLEMENTED();
}
-void SessionStateDelegate::SwitchActiveUser(const std::string& email) {
+void SessionStateDelegate::SwitchActiveUser(const std::string& user_id) {
+ NOTIMPLEMENTED();
+}
+
+void SessionStateDelegate::AddSessionStateObserver(
+ ash::SessionStateObserver* observer) {
+ NOTIMPLEMENTED();
+}
+
+void SessionStateDelegate::RemoveSessionStateObserver(
+ ash::SessionStateObserver* observer) {
NOTIMPLEMENTED();
}
« no previous file with comments | « chrome/browser/ui/ash/session_state_delegate_views.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698