blob: e2921af37effa42d4461ab98b9059b039dbc9ec4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_BROWSER_NOTIFICATION_OBSERVERS_H_
#define CHROME_BROWSER_CHROMEOS_BROWSER_NOTIFICATION_OBSERVERS_H_
#include "base/atomic_sequence_num.h"
#include "base/singleton.h"
#include "chrome/common/notification_observer.h"
#include "chrome/common/notification_registrar.h"
#include "chrome/common/notification_source.h"
#include "chrome/common/notification_type.h"
// Global notification observers for chrome os.
namespace chromeos {
// Notification observer to log the initial time of when the first tab
// page is rendered for Chrome OS.
class InitialTabNotificationObserver : public NotificationObserver {
public:
InitialTabNotificationObserver();
virtual ~InitialTabNotificationObserver();
static InitialTabNotificationObserver* Get() {
return Singleton<InitialTabNotificationObserver>::get();
}
// NotificationObserver implementation.
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
private:
NotificationRegistrar registrar_;
base::AtomicSequenceNumber num_tabs_;
DISALLOW_COPY_AND_ASSIGN(InitialTabNotificationObserver);
};
// Collects LOGIN_AUTHENTICATION notifications and logs uptime
// when login was successful.
class LogLoginSuccessObserver : public NotificationObserver {
public:
LogLoginSuccessObserver();
virtual ~LogLoginSuccessObserver();
static LogLoginSuccessObserver* Get() {
return Singleton<LogLoginSuccessObserver>::get();
}
// NotificationObserver interface.
virtual void Observe(NotificationType type, const NotificationSource& source,
const NotificationDetails& details);
private:
NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(LogLoginSuccessObserver);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_BROWSER_NOTIFICATION_OBSERVERS_H_
|