chromium/remoting/protocol/authenticator.cc

// Copyright 2011 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/protocol/authenticator.h"

#include "base/functional/bind.h"
#include "base/logging.h"
#include "remoting/base/constants.h"
#include "third_party/libjingle_xmpp/xmllite/xmlelement.h"

namespace remoting::protocol {

namespace {
const jingle_xmpp::StaticQName kAuthenticationQName =;
}  // namespace

Authenticator::Authenticator() = default;
Authenticator::~Authenticator() = default;

// static
bool Authenticator::IsAuthenticatorMessage(
    const jingle_xmpp::XmlElement* message) {}

// static
std::unique_ptr<jingle_xmpp::XmlElement>
Authenticator::CreateEmptyAuthenticatorMessage() {}

// static
const jingle_xmpp::XmlElement* Authenticator::FindAuthenticatorMessage(
    const jingle_xmpp::XmlElement* message) {}

void Authenticator::NotifyStateChangeAfterAccepted() {}

void Authenticator::ChainStateChangeAfterAcceptedWithUnderlying(
    Authenticator& underlying) {}

}  // namespace remoting::protocol