chromium/chrome/enterprise_companion/app/app_client_base.h

// 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.

#ifndef CHROME_ENTERPRISE_COMPANION_APP_APP_CLIENT_BASE_H_
#define CHROME_ENTERPRISE_COMPANION_APP_APP_CLIENT_BASE_H_

#include <memory>

#include "base/sequence_checker.h"
#include "chrome/enterprise_companion/app/app.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"

namespace mojo {
class IsolatedConnection;
}

namespace enterprise_companion {

// Base class for applications which are IPC clients of the companion app.
class AppClientBase : public App {};

}  // namespace enterprise_companion

#endif  // CHROME_ENTERPRISE_COMPANION_APP_APP_CLIENT_BASE_H_