blob: cf02838dc97835e656622fd2f0ac019d8f783c0b (
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
|
// 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.
#include "ui/base/idle/idle.h"
#include "ui/base/idle/idle_internal.h"
#if defined(USE_XSCRNSAVER)
#include "ui/base/idle/idle_query_x11.h"
#include "ui/base/idle/screensaver_window_finder_x11.h"
#endif
namespace ui {
int CalculateIdleTime() {
#if defined(USE_XSCRNSAVER)
IdleQueryX11 idle_query;
return idle_query.IdleTime();
#else
return 0;
#endif
}
bool CheckIdleStateIsLocked() {
if (IdleStateForTesting().has_value())
return IdleStateForTesting().value() == IDLE_STATE_LOCKED;
#if defined(USE_XSCRNSAVER)
// Usually the screensaver is used to lock the screen.
return ScreensaverWindowFinder::ScreensaverWindowExists();
#else
return false;
#endif
}
} // namespace ui
|