blob: afdf1833e0f6f96eab5f51c0291acca7afb8f164 [file] [log] [blame]
Darin Petkovbec79a22011-08-01 14:47:17 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_MOCK_MODEM_CDMA_PROXY_H_
6#define SHILL_MOCK_MODEM_CDMA_PROXY_H_
7
8#include <gmock/gmock.h>
9
10#include "shill/modem_cdma_proxy_interface.h"
11
12namespace shill {
13
14class MockModemCDMAProxy : public ModemCDMAProxyInterface {
15 public:
16 MOCK_METHOD2(GetRegistrationState, void(uint32 *cdma_1x_state,
17 uint32 *evdo_state));
18};
19
20} // namespace shill
21
22#endif // SHILL_MOCK_MODEM_CDMA_PROXY_H_