chromium/chrome/enterprise_companion/app/app_client_base.cc

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

#include "chrome/enterprise_companion/app/app_client_base.h"

#include "base/sequence_checker.h"
#include "chrome/enterprise_companion/enterprise_companion_client.h"
#include "chrome/enterprise_companion/enterprise_companion_status.h"
#include "chrome/enterprise_companion/mojom/enterprise_companion.mojom.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/platform/named_platform_channel.h"
#include "mojo/public/cpp/system/isolated_connection.h"

namespace enterprise_companion {

AppClientBase::AppClientBase(
    const mojo::NamedPlatformChannel::ServerName& server_name)
    :{}

AppClientBase::~AppClientBase() = default;

void AppClientBase::OnConnected(
    std::unique_ptr<mojo::IsolatedConnection> connection,
    mojo::Remote<mojom::EnterpriseCompanion> remote) {}

void AppClientBase::FirstTaskRun() {}

}  // namespace enterprise_companion