blob: bd789d4f0e66a00e032619f68d4588e0c3d69907 (
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
|
// Copyright (c) 2012 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_KIOSK_MODE_MOCK_KIOSK_MODE_SETTINGS_H_
#define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_MOCK_KIOSK_MODE_SETTINGS_H_
#include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_settings.h"
#include <string>
#include "base/basictypes.h"
#include "base/callback_forward.h"
#include "base/compiler_specific.h"
#include "base/time.h"
namespace base {
template <typename T> struct DefaultLazyInstanceTraits;
}
namespace {
const int kMockIdleLogoutTimeoutMs = 50000;
const int kMockIdleLogoutWarningDurationMs = 1000;
} // namespace
namespace chromeos {
class MockKioskModeSettings : public KioskModeSettings {
public:
// We should be able to instantiate mock instances, unlike the main kiosk
// mode settings class, which should always have only one global instance.
MockKioskModeSettings();
virtual ~MockKioskModeSettings();
virtual bool IsKioskModeEnabled() OVERRIDE;
// Initialize the mock class.
virtual void Initialize(const base::Closure& notify_initialized) OVERRIDE;
virtual bool is_initialized() const OVERRIDE;
// The time to logout the user in on idle.
virtual base::TimeDelta GetIdleLogoutTimeout() const OVERRIDE;
// The time to show the countdown timer for.
virtual base::TimeDelta GetIdleLogoutWarningDuration() const OVERRIDE;
private:
friend struct base::DefaultLazyInstanceTraits<MockKioskModeSettings>;
bool is_initialized_;
DISALLOW_COPY_AND_ASSIGN(MockKioskModeSettings);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_MOCK_KIOSK_MODE_SETTINGS_H_
|