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
35
36
37
38
39
40
41
42
ash / components / arc / test / fake_disk_space_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_DISK_SPACE_INSTANCE_H_
#define ASH_COMPONENTS_ARC_TEST_FAKE_DISK_SPACE_INSTANCE_H_
#include "ash/components/arc/mojom/disk_space.mojom.h"
#include "base/functional/callback_forward.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/remote.h"
namespace arc {
class FakeDiskSpaceInstance : public mojom::DiskSpaceInstance {
public:
FakeDiskSpaceInstance();
FakeDiskSpaceInstance(const FakeDiskSpaceInstance&) = delete;
FakeDiskSpaceInstance& operator=(const FakeDiskSpaceInstance&) = delete;
~FakeDiskSpaceInstance() override;
// mojom::DiskSpaceInstance overrides:
void Init(::mojo::PendingRemote<mojom::DiskSpaceHost> host_remote,
InitCallback callback) override;
void GetApplicationsSize(GetApplicationsSizeCallback callback) override;
void ResizeStorageBalloon(int64_t free_space_bytes) override;
size_t num_get_applications_size_called() const {
return num_get_applications_size_called_;
}
int64_t free_space_bytes() const { return free_space_bytes_; }
private:
mojo::Remote<mojom::DiskSpaceHost> host_remote_;
size_t num_get_applications_size_called_ = 0;
int64_t free_space_bytes_ = 0;
};
} // namespace arc
#endif // ASH_COMPONENTS_ARC_TEST_FAKE_DISK_SPACE_INSTANCE_H_