blob: 3d4b7cb13ea7201e1e62ceb6e1a0af9a8f91747a (
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
|
// 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_KIOSK_MODE_SCREENSAVER_H_
#define CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SCREENSAVER_H_
#include "base/basictypes.h"
#include "base/files/file_path.h"
#include "base/memory/weak_ptr.h"
#include "ui/wm/core/user_activity_observer.h"
namespace extensions {
class Extension;
}
namespace chromeos {
class KioskModeScreensaver : public wm::UserActivityObserver {
public:
KioskModeScreensaver();
virtual ~KioskModeScreensaver();
private:
friend class KioskModeScreensaverTest;
// wm::UserActivityObserver overrides:
virtual void OnUserActivity(const ui::Event* event) OVERRIDE;
// Initialization functions, in order
// Get the screensaver path once KioskModeHelper is initialized.
void GetScreensaverCrxPath();
// Callback to receive the path to the screensaver extension's crx and call
// the unpacker to unpack and load the crx.
void ScreensaverPathCallback(const base::FilePath& screensaver_crx);
// Called back on the UI thread to Setup the screensaver with the now unpacked
// and loaded extension.
void SetupScreensaver(scoped_refptr<extensions::Extension> extension,
const base::FilePath& extension_base_path);
base::WeakPtrFactory<KioskModeScreensaver> weak_ptr_factory_;
base::FilePath extension_base_path_;
DISALLOW_COPY_AND_ASSIGN(KioskModeScreensaver);
};
void InitializeKioskModeScreensaver();
void ShutdownKioskModeScreensaver();
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_KIOSK_MODE_KIOSK_MODE_SCREENSAVER_H_
|