cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / ash / system / user / user_observer.h
blob64c2b9de40f60b5d6c8d0a68e4aa4ba1fd0696f0
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
3 // found in the LICENSE file.
5 #ifndef ASH_SYSTEM_USER_USER_OBSERVER_H_
6 #define ASH_SYSTEM_USER_USER_OBSERVER_H_
8 #include "ash/ash_export.h"
10 namespace ash {
12 class ASH_EXPORT UserObserver {
13 public:
14 virtual ~UserObserver() {}
16 // A user got updated / changed.
17 virtual void OnUserUpdate() = 0;
19 // A user was added to the existing session.
20 virtual void OnUserAddedToSession() = 0;
23 } // namespace ash
25 #endif // ASH_SYSTEM_USER_USER_OBSERVER_H_