shill: Get CDMA registration state.

BUG=chromium-os:18315
TEST=unit tests, tested on device

Change-Id: Ida6d72145eb829a8d47fd23c9d30ded5308aa8cd
Reviewed-on: http://gerrit.chromium.org/gerrit/5115
Reviewed-by: Darin Petkov <petkov@chromium.org>
Tested-by: Darin Petkov <petkov@chromium.org>
diff --git a/mock_modem_cdma_proxy.h b/mock_modem_cdma_proxy.h
new file mode 100644
index 0000000..afdf183
--- /dev/null
+++ b/mock_modem_cdma_proxy.h
@@ -0,0 +1,22 @@
+// Copyright (c) 2011 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_MODEM_CDMA_PROXY_H_
+#define SHILL_MOCK_MODEM_CDMA_PROXY_H_
+
+#include <gmock/gmock.h>
+
+#include "shill/modem_cdma_proxy_interface.h"
+
+namespace shill {
+
+class MockModemCDMAProxy : public ModemCDMAProxyInterface {
+ public:
+  MOCK_METHOD2(GetRegistrationState, void(uint32 *cdma_1x_state,
+                                          uint32 *evdo_state));
+};
+
+}  // namespace shill
+
+#endif  // SHILL_MOCK_MODEM_CDMA_PROXY_H_