summaryrefslogtreecommitdiffstats
path: root/remoting/host/continue_window.h
blob: 9af72d8ba0a114fde0ced5ec7c810b9096f3e449 (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 REMOTING_HOST_CONTINUE_WINDOW_H_
#define REMOTING_HOST_CONTINUE_WINDOW_H_

#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/timer/timer.h"
#include "remoting/host/host_window.h"

namespace remoting {

class ContinueWindow : public HostWindow {
 public:
  ~ContinueWindow() override;

  // HostWindow override.
  void Start(const base::WeakPtr<ClientSessionControl>& client_session_control)
      override;

  // Resumes paused client session.
  void ContinueSession();

  // Disconnects the client session.
  void DisconnectSession();

 protected:
  ContinueWindow();

  // Shows and hides the UI.
  virtual void ShowUi() = 0;
  virtual void HideUi() = 0;

 private:
  // Invoked periodically to ask for the local user whether the session should
  // be continued.
  void OnSessionExpired();

  // Used to disconnect the client session.
  base::WeakPtr<ClientSessionControl> client_session_control_;

  // Used to disconnect the client session when timeout expires.
  base::OneShotTimer disconnect_timer_;

  // Used to ask the local user whether the session should be continued.
  base::OneShotTimer session_expired_timer_;

  DISALLOW_COPY_AND_ASSIGN(ContinueWindow);
};

}  // namespace remoting

#endif  // REMOTING_HOST_CONTINUE_WINDOW_H_