shill: Obtain GSM and CDMA identifiers when registering the modem.

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

Change-Id: Ie6a0c4645504525ae299d0882a51649272afbdc9
Reviewed-on: http://gerrit.chromium.org/gerrit/6917
Tested-by: Darin Petkov <petkov@chromium.org>
Reviewed-by: Eric Shienbrood <ers@chromium.org>
diff --git a/mock_modem_gsm_card_proxy.h b/mock_modem_gsm_card_proxy.h
new file mode 100644
index 0000000..0d91f39
--- /dev/null
+++ b/mock_modem_gsm_card_proxy.h
@@ -0,0 +1,31 @@
+// 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_GSM_CARD_PROXY_H_
+#define SHILL_MOCK_MODEM_GSM_CARD_PROXY_H_
+
+#include <base/basictypes.h>
+#include <gmock/gmock.h>
+
+#include "shill/modem_gsm_card_proxy_interface.h"
+
+namespace shill {
+
+class MockModemGSMCardProxy : public ModemGSMCardProxyInterface {
+ public:
+  MockModemGSMCardProxy();
+  virtual ~MockModemGSMCardProxy();
+
+  MOCK_METHOD0(GetIMEI, std::string());
+  MOCK_METHOD0(GetIMSI, std::string());
+  MOCK_METHOD0(GetSPN, std::string());
+  MOCK_METHOD0(GetMSISDN, std::string());
+
+ private:
+  DISALLOW_COPY_AND_ASSIGN(MockModemGSMCardProxy);
+};
+
+}  // namespace shill
+
+#endif  // SHILL_MOCK_MODEM_GSM_CARD_PROXY_H_