blob: 8e39194f960e715441757dc9f33247310530d92e [file] [log] [blame]
// Copyright 2015 The Chromium OS 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 SHILL_MOCK_PERMISSION_BROKER_PROXY_H_
#define SHILL_MOCK_PERMISSION_BROKER_PROXY_H_
#include "shill/permission_broker_proxy.h"
#include <string>
#include <vector>
namespace shill {
class MockPermissionBrokerProxy : public PermissionBrokerProxyInterface {
public:
MockPermissionBrokerProxy() {}
~MockPermissionBrokerProxy() override {}
MOCK_METHOD2(RequestVpnSetup, bool(const std::vector<std::string>& user_names,
const std::string& interface));
MOCK_METHOD0(RemoveVpnSetup, bool());
private:
DISALLOW_COPY_AND_ASSIGN(MockPermissionBrokerProxy);
};
} // namespace shill
#endif // SHILL_MOCK_PERMISSION_BROKER_PROXY_H_