// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_CHROMEOS_SCOPED_FAKE_ASH_PROXY_H_ #define REMOTING_HOST_CHROMEOS_SCOPED_FAKE_ASH_PROXY_H_ #include "remoting/host/chromeos/ash_proxy.h" #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "mojo/public/cpp/bindings/receiver.h" namespace remoting::test { // Simple basic implementation of |AshProxy|. // Will automatically register itself as the global version in the constructor, // and deregister in the destructor. class ScopedFakeAshProxy : public AshProxy { … }; } // namespace remoting::test #endif // REMOTING_HOST_CHROMEOS_SCOPED_FAKE_ASH_PROXY_H_