chromium/remoting/host/continue_window.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "remoting/host/continue_window.h"

#include "base/location.h"
#include "base/time/time.h"
#include "remoting/host/client_session_control.h"

// Minutes before the local user should confirm that the session should go on.
constexpr base::TimeDelta kSessionExpirationTimeout =;

// Minutes before the session will be disconnected (from the moment the Continue
// window has been shown).
constexpr base::TimeDelta kSessionDisconnectTimeout =;

namespace remoting {

ContinueWindow::ContinueWindow() = default;

ContinueWindow::~ContinueWindow() = default;

void ContinueWindow::Start(
    const base::WeakPtr<ClientSessionControl>& client_session_control) {}

void ContinueWindow::ContinueSession() {}

void ContinueWindow::DisconnectSession() {}

void ContinueWindow::OnSessionExpired() {}

}  // namespace remoting