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

ash / components / arc / test / fake_keymint_instance.h [blame]

// 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 ASH_COMPONENTS_ARC_TEST_FAKE_KEYMINT_INSTANCE_H_
#define ASH_COMPONENTS_ARC_TEST_FAKE_KEYMINT_INSTANCE_H_

#include "ash/components/arc/mojom/keymint.mojom.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"

namespace arc {

class FakeKeyMintInstance : public mojom::keymint::KeyMintInstance {
 public:
  FakeKeyMintInstance();
  FakeKeyMintInstance(const FakeKeyMintInstance&) = delete;
  FakeKeyMintInstance& operator=(const FakeKeyMintInstance&) = delete;
  ~FakeKeyMintInstance() override;

  // mojom::KeyMintInstance overrides:
  void Init(mojo::PendingRemote<mojom::keymint::KeyMintHost> host_remote,
            InitCallback callback) override;

  size_t num_init_called() const { return num_init_called_; }

 private:
  mojo::Remote<mojom::keymint::KeyMintHost> host_remote_;
  size_t num_init_called_ = 0;
};

}  // namespace arc

#endif  // ASH_COMPONENTS_ARC_TEST_FAKE_KEYMINT_INSTANCE_H_