blob: 64d3b05bb048687bcba79b9cb32186df4d894eb2 [file] [log] [blame]
// Copyright (c) 2012 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_WIMAX_MANAGER_PROXY_H_
#define SHILL_MOCK_WIMAX_MANAGER_PROXY_H_
#include <vector>
#include <base/basictypes.h>
#include <gmock/gmock.h>
#include "shill/wimax_manager_proxy_interface.h"
namespace shill {
class MockWiMaxManagerProxy : public WiMaxManagerProxyInterface {
public:
MockWiMaxManagerProxy();
virtual ~MockWiMaxManagerProxy();
MOCK_METHOD1(set_devices_changed_callback,
void(const DevicesChangedCallback &callback));
MOCK_METHOD1(Devices, RpcIdentifiers(Error *error));
private:
DISALLOW_COPY_AND_ASSIGN(MockWiMaxManagerProxy);
};
} // namespace shill
#endif // SHILL_MOCK_WIMAX_MANAGER_PROXY_H_