// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef SERVICES_TEST_ECHO_ECHO_SERVICE_H_ #define SERVICES_TEST_ECHO_ECHO_SERVICE_H_ #include <vector> #include "build/build_config.h" #include "components/os_crypt/async/common/encryptor.h" #include "mojo/public/cpp/bindings/pending_receiver.h" #include "mojo/public/cpp/bindings/receiver.h" #include "services/test/echo/public/mojom/echo.mojom.h" namespace echo { class EchoService : public mojom::EchoService { … }; } // namespace echo #endif // SERVICES_TEST_ECHO_ECHO_SERVICE_H_