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

Side by Side Diff: chrome/browser/chromeos/login/user_manager_impl.h

Issue 23494053: Remove NOTIFICATION_SYSTEM_SETTING_CHANGED, switch CrosSettings to base::CallbackRegistry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: oops Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 // access. 391 // access.
392 FlowMap specific_flows_; 392 FlowMap specific_flows_;
393 393
394 // User sessions that have to be restored after browser crash. 394 // User sessions that have to be restored after browser crash.
395 // [user_id] > [user_id_hash] 395 // [user_id] > [user_id_hash]
396 SessionManagerClient::ActiveSessionsMap pending_user_sessions_; 396 SessionManagerClient::ActiveSessionsMap pending_user_sessions_;
397 397
398 // Time at which this object was created. 398 // Time at which this object was created.
399 base::TimeTicks manager_creation_time_; 399 base::TimeTicks manager_creation_time_;
400 400
401 scoped_ptr<CrosSettings::ObserverSubscription>
402 local_accounts_subscription_;
403 scoped_ptr<CrosSettings::ObserverSubscription>
404 supervised_users_subscription_;
405
401 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl); 406 DISALLOW_COPY_AND_ASSIGN(UserManagerImpl);
402 }; 407 };
403 408
404 } // namespace chromeos 409 } // namespace chromeos
405 410
406 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_ 411 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_MANAGER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698