mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
Add constructor and destructor for FakeFastPairReposity
PiperOrigin-RevId: 507873629
This commit is contained in:
committed by
Copybara-Service
parent
c80dd182e2
commit
21e12fe8aa
@@ -27,10 +27,10 @@ namespace nearby {
|
||||
namespace fastpair {
|
||||
class FakeFastPairRepository : public FastPairRepository {
|
||||
public:
|
||||
FakeFastPairRepository();
|
||||
FakeFastPairRepository() = default;
|
||||
FakeFastPairRepository(const FakeFastPairRepository&) = delete;
|
||||
FakeFastPairRepository& operator=(const FakeFastPairRepository&) = delete;
|
||||
~FakeFastPairRepository() override;
|
||||
~FakeFastPairRepository() override = default;
|
||||
|
||||
void SetFakeMetadata(absl::string_view hex_model_id, proto::Device metadata);
|
||||
void ClearFakeMetadata(absl::string_view hex_model_id);
|
||||
|
||||
Reference in New Issue
Block a user