blob: 9fe12c4d2d62c0c5d887dee8b2fbb1371d15eaa8 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SPELLCHECK_EMPTY_LOCAL_INTERFACE_PROVIDER_H_
#define COMPONENTS_SPELLCHECK_EMPTY_LOCAL_INTERFACE_PROVIDER_H_
#include "services/service_manager/public/cpp/local_interface_provider.h"
namespace spellcheck {
// A dummy LocalInterfaceProvider that doesn't bind any remote application.
// May require a base::test::ScopedTaskEnvironment if GetInterface() is expected
// to be called.
class EmptyLocalInterfaceProvider
: public service_manager::LocalInterfaceProvider {
public:
void GetInterface(const std::string& name,
mojo::ScopedMessagePipeHandle request_handle) override;
};
} // namespace spellcheck
#endif // COMPONENTS_SPELLCHECK_EMPTY_LOCAL_INTERFACE_PROVIDER_H_