blob: 66eb306377d0f7aa7b15e6e9660c48051e1e9348 [file] [log] [blame]
Chris Masone3bd3c8c2011-06-13 08:20:26 -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_CELLULAR_
6#define SHILL_CELLULAR_
7
8#include <string>
9
10#include <base/basictypes.h>
Darin Petkovc5f56562011-08-06 16:40:05 -070011#include <base/task.h>
Darin Petkove9d12e02011-07-27 15:09:37 -070012#include <gtest/gtest_prod.h> // for FRIEND_TEST
Chris Masone3bd3c8c2011-06-13 08:20:26 -070013
Darin Petkovc5f56562011-08-06 16:40:05 -070014#include "shill/dbus_properties.h"
Chris Masone3bd3c8c2011-06-13 08:20:26 -070015#include "shill/device.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070016#include "shill/event_dispatcher.h"
Darin Petkovd9661952011-08-03 16:25:42 -070017#include "shill/modem_cdma_proxy_interface.h"
Darin Petkov975b5e72011-08-30 11:48:08 -070018#include "shill/modem_gsm_card_proxy_interface.h"
Darin Petkova1e0a1c2011-08-25 15:08:33 -070019#include "shill/modem_gsm_network_proxy_interface.h"
Darin Petkovc5f56562011-08-06 16:40:05 -070020#include "shill/modem_proxy_interface.h"
Chris Masone2b105542011-06-22 10:58:09 -070021#include "shill/refptr_types.h"
Chris Masone3bd3c8c2011-06-13 08:20:26 -070022
23namespace shill {
24
Darin Petkovdaf43862011-10-27 11:37:28 +020025class CellularCapability;
Darin Petkov4d6d9412011-08-24 13:19:54 -070026class Error;
Darin Petkove604f702011-07-28 15:51:17 -070027class ModemSimpleProxyInterface;
Darin Petkovab565bb2011-10-06 02:55:51 -070028class ProxyFactory;
Darin Petkove9d12e02011-07-27 15:09:37 -070029
Darin Petkovd9661952011-08-03 16:25:42 -070030class Cellular : public Device,
Darin Petkov580c7af2011-10-24 12:32:50 +020031 public ModemCDMAProxyDelegate,
32 public ModemGSMCardProxyDelegate,
33 public ModemGSMNetworkProxyDelegate,
34 public ModemProxyDelegate {
Chris Masone3bd3c8c2011-06-13 08:20:26 -070035 public:
Darin Petkove9d12e02011-07-27 15:09:37 -070036 enum Type {
37 kTypeGSM,
38 kTypeCDMA
39 };
40
Darin Petkov0828f5f2011-08-11 10:18:52 -070041 // The device states progress linearly from Disabled to Linked.
Darin Petkove9d12e02011-07-27 15:09:37 -070042 enum State {
Darin Petkov0828f5f2011-08-11 10:18:52 -070043 // This is the initial state of the modem and indicates that the modem radio
44 // is not turned on.
Darin Petkove9d12e02011-07-27 15:09:37 -070045 kStateDisabled,
Darin Petkov0828f5f2011-08-11 10:18:52 -070046 // This state indicates that the modem radio is turned on, and it should be
47 // possible to measure signal strength.
Darin Petkove9d12e02011-07-27 15:09:37 -070048 kStateEnabled,
Darin Petkov0828f5f2011-08-11 10:18:52 -070049 // The modem has registered with a network and has signal quality
Darin Petkov51489002011-08-18 13:13:20 -070050 // measurements. A cellular service object is created.
Darin Petkove9d12e02011-07-27 15:09:37 -070051 kStateRegistered,
Darin Petkov0828f5f2011-08-11 10:18:52 -070052 // The modem has connected to a network.
Darin Petkove9d12e02011-07-27 15:09:37 -070053 kStateConnected,
Darin Petkov0828f5f2011-08-11 10:18:52 -070054 // The network interface is UP.
55 kStateLinked,
Darin Petkove9d12e02011-07-27 15:09:37 -070056 };
57
Darin Petkovbac96002011-08-09 13:22:00 -070058 // These should be kept in sync with ModemManager's mm-modem.h:MMModemState.
59 enum ModemState {
60 kModemStateUnknown = 0,
61 kModemStateDisabled = 10,
62 kModemStateDisabling = 20,
63 kModemStateEnabling = 30,
64 kModemStateEnabled = 40,
65 kModemStateSearching = 50,
66 kModemStateRegistered = 60,
67 kModemStateDisconnecting = 70,
68 kModemStateConnecting = 80,
69 kModemStateConnected = 90,
70 };
71
Darin Petkov3335b372011-08-22 11:05:32 -070072 class Operator {
73 public:
74 Operator();
75 ~Operator();
76
77 void CopyFrom(const Operator &oper);
78
79 const std::string &GetName() const;
80 void SetName(const std::string &name);
81
82 const std::string &GetCode() const;
83 void SetCode(const std::string &code);
84
85 const std::string &GetCountry() const;
86 void SetCountry(const std::string &country);
87
88 const Stringmap &ToDict() const;
89
90 private:
91 Stringmap dict_;
92
93 DISALLOW_COPY_AND_ASSIGN(Operator);
94 };
95
Chris Masone889666b2011-07-03 12:58:50 -070096 struct SimLockStatus {
97 public:
Darin Petkove9d12e02011-07-27 15:09:37 -070098 SimLockStatus() : retries_left(0) {}
Darin Petkov48a511a2011-09-15 10:33:37 -070099 SimLockStatus(const std::string &in_lock_type, uint32 in_retries_left)
100 : lock_type(in_lock_type),
101 retries_left(in_retries_left) {}
Darin Petkove9d12e02011-07-27 15:09:37 -0700102
Chris Masone889666b2011-07-03 12:58:50 -0700103 std::string lock_type;
104 uint32 retries_left;
105 };
106
Darin Petkovc5f56562011-08-06 16:40:05 -0700107 static const char kConnectPropertyPhoneNumber[];
108
Darin Petkove9d12e02011-07-27 15:09:37 -0700109 // |owner| is the ModemManager DBus service owner (e.g., ":1.17"). |path| is
110 // the ModemManager.Modem DBus object path (e.g.,
111 // "/org/chromium/ModemManager/Gobi/0").
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700112 Cellular(ControlInterface *control_interface,
113 EventDispatcher *dispatcher,
114 Manager *manager,
Darin Petkove9d12e02011-07-27 15:09:37 -0700115 const std::string &link_name,
Chris Masone626719f2011-08-18 16:58:48 -0700116 const std::string &address,
Darin Petkove9d12e02011-07-27 15:09:37 -0700117 int interface_index,
118 Type type,
119 const std::string &owner,
120 const std::string &path);
121 virtual ~Cellular();
122
Darin Petkov4d6d9412011-08-24 13:19:54 -0700123 // Asynchronously connects the modem to the network. Populates |error| on
124 // failure, leaves it unchanged otherwise.
125 void Connect(Error *error);
Darin Petkovc5f56562011-08-06 16:40:05 -0700126
Darin Petkovb100ae72011-08-24 16:19:45 -0700127 // Asynchronously activates the modem. Populates |error| on failure, leaves it
128 // unchanged otherwise.
129 void Activate(const std::string &carrier, Error *error);
Darin Petkovc408e692011-08-17 13:47:15 -0700130
Darin Petkovbac96002011-08-09 13:22:00 -0700131 void set_modem_state(ModemState state) { modem_state_ = state; }
132 ModemState modem_state() const { return modem_state_; }
133
Darin Petkov48a511a2011-09-15 10:33:37 -0700134 const SimLockStatus &sim_lock_status() const { return sim_lock_status_; }
135 void set_sim_lock_status(const SimLockStatus &s) { sim_lock_status_ = s; }
136
Darin Petkovdaf43862011-10-27 11:37:28 +0200137 const std::string &dbus_owner() const { return dbus_owner_; }
138 const std::string &dbus_path() const { return dbus_path_; }
139
140 ProxyFactory *proxy_factory() const { return proxy_factory_; }
141
142 void set_modem_cdma_proxy(ModemCDMAProxyInterface *proxy) {
143 cdma_proxy_.reset(proxy);
144 }
145 void set_modem_gsm_card_proxy(ModemGSMCardProxyInterface *proxy) {
146 gsm_card_proxy_.reset(proxy);
147 }
148 void set_modem_gsm_network_proxy(ModemGSMNetworkProxyInterface *proxy) {
149 gsm_network_proxy_.reset(proxy);
150 }
151
Darin Petkov48a511a2011-09-15 10:33:37 -0700152 void SetGSMAccessTechnology(uint32 access_technology);
153
Darin Petkove9d12e02011-07-27 15:09:37 -0700154 // Inherited from Device.
155 virtual void Start();
156 virtual void Stop();
Paul Stewartfdd16072011-09-16 12:41:35 -0700157 virtual bool TechnologyIs(Technology::Identifier type) const;
Darin Petkov0828f5f2011-08-11 10:18:52 -0700158 virtual void LinkEvent(unsigned int flags, unsigned int change);
Darin Petkovc0865312011-09-16 15:31:20 -0700159 virtual void Scan(Error *error);
Darin Petkov9ae310f2011-08-30 15:41:13 -0700160 virtual void RegisterOnNetwork(const std::string &network_id, Error *error);
Darin Petkove42e1012011-08-31 12:35:04 -0700161 virtual void RequirePIN(const std::string &pin, bool require, Error *error);
162 virtual void EnterPIN(const std::string &pin, Error *error);
163 virtual void UnblockPIN(const std::string &unblock_code,
164 const std::string &pin,
165 Error *error);
166 virtual void ChangePIN(const std::string &old_pin,
167 const std::string &new_pin,
168 Error *error);
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700169
170 private:
Darin Petkovab565bb2011-10-06 02:55:51 -0700171 friend class CellularTest;
Darin Petkovc408e692011-08-17 13:47:15 -0700172 FRIEND_TEST(CellularTest, Activate);
Darin Petkov51489002011-08-18 13:13:20 -0700173 FRIEND_TEST(CellularTest, ActivateError);
Darin Petkov3335b372011-08-22 11:05:32 -0700174 FRIEND_TEST(CellularTest, CreateService);
Darin Petkove42e1012011-08-31 12:35:04 -0700175 FRIEND_TEST(CellularTest, ChangePIN);
176 FRIEND_TEST(CellularTest, ChangePINError);
Darin Petkovc5f56562011-08-06 16:40:05 -0700177 FRIEND_TEST(CellularTest, Connect);
Darin Petkovc408e692011-08-17 13:47:15 -0700178 FRIEND_TEST(CellularTest, GetCDMAActivationStateString);
Darin Petkov51489002011-08-18 13:13:20 -0700179 FRIEND_TEST(CellularTest, GetCDMAActivationErrorString);
Darin Petkov975b5e72011-08-30 11:48:08 -0700180 FRIEND_TEST(CellularTest, GetCDMAIdentifiers);
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700181 FRIEND_TEST(CellularTest, GetCDMANetworkTechnologyString);
Darin Petkovbec79a22011-08-01 14:47:17 -0700182 FRIEND_TEST(CellularTest, GetCDMARegistrationState);
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700183 FRIEND_TEST(CellularTest, GetCDMARoamingStateString);
Darin Petkovd9661952011-08-03 16:25:42 -0700184 FRIEND_TEST(CellularTest, GetCDMASignalQuality);
Darin Petkov975b5e72011-08-30 11:48:08 -0700185 FRIEND_TEST(CellularTest, GetGSMIdentifiers);
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700186 FRIEND_TEST(CellularTest, GetGSMNetworkTechnologyString);
187 FRIEND_TEST(CellularTest, GetGSMRoamingStateString);
Darin Petkov22b72bf2011-08-29 14:01:20 -0700188 FRIEND_TEST(CellularTest, GetGSMSignalQuality);
Darin Petkovceb68172011-07-29 14:47:48 -0700189 FRIEND_TEST(CellularTest, GetModemInfo);
190 FRIEND_TEST(CellularTest, GetModemStatus);
Darin Petkove9d12e02011-07-27 15:09:37 -0700191 FRIEND_TEST(CellularTest, GetStateString);
192 FRIEND_TEST(CellularTest, GetTypeString);
Darin Petkove42e1012011-08-31 12:35:04 -0700193 FRIEND_TEST(CellularTest, EnterPIN);
194 FRIEND_TEST(CellularTest, EnterPINError);
Darin Petkovbec79a22011-08-01 14:47:17 -0700195 FRIEND_TEST(CellularTest, InitProxiesCDMA);
196 FRIEND_TEST(CellularTest, InitProxiesGSM);
Darin Petkovc0865312011-09-16 15:31:20 -0700197 FRIEND_TEST(CellularTest, ParseScanResult);
Darin Petkov9ae310f2011-08-30 15:41:13 -0700198 FRIEND_TEST(CellularTest, RegisterOnNetwork);
199 FRIEND_TEST(CellularTest, RegisterOnNetworkError);
Darin Petkove42e1012011-08-31 12:35:04 -0700200 FRIEND_TEST(CellularTest, RequirePIN);
201 FRIEND_TEST(CellularTest, RequirePINError);
Darin Petkov48a511a2011-09-15 10:33:37 -0700202 FRIEND_TEST(CellularTest, SetGSMAccessTechnology);
Darin Petkovc0865312011-09-16 15:31:20 -0700203 FRIEND_TEST(CellularTest, Scan);
Darin Petkovbac96002011-08-09 13:22:00 -0700204 FRIEND_TEST(CellularTest, StartConnected);
Darin Petkova1e0a1c2011-08-25 15:08:33 -0700205 FRIEND_TEST(CellularTest, StartCDMARegister);
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700206 FRIEND_TEST(CellularTest, StartGSMRegister);
Darin Petkov0828f5f2011-08-11 10:18:52 -0700207 FRIEND_TEST(CellularTest, StartLinked);
Darin Petkove42e1012011-08-31 12:35:04 -0700208 FRIEND_TEST(CellularTest, UnblockPIN);
209 FRIEND_TEST(CellularTest, UnblockPINError);
Darin Petkovbac96002011-08-09 13:22:00 -0700210
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700211 struct CDMA {
212 CDMA();
213
214 uint32 registration_state_evdo;
215 uint32 registration_state_1x;
216 uint32 activation_state;
217
218 uint16 prl_version;
219 std::string payment_url;
220 std::string usage_url;
221 };
222
223 struct GSM {
224 GSM();
225
226 uint32 registration_state;
227 uint32 access_technology;
228 std::string network_id;
229 std::string operator_name;
Darin Petkov975b5e72011-08-30 11:48:08 -0700230 std::string spn;
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700231 };
232
Darin Petkovc0865312011-09-16 15:31:20 -0700233 static const char kNetworkPropertyAccessTechnology[];
234 static const char kNetworkPropertyID[];
235 static const char kNetworkPropertyLongName[];
236 static const char kNetworkPropertyShortName[];
237 static const char kNetworkPropertyStatus[];
Darin Petkovbac96002011-08-09 13:22:00 -0700238 static const char kPhoneNumberCDMA[];
239 static const char kPhoneNumberGSM[];
Darin Petkove9d12e02011-07-27 15:09:37 -0700240
Darin Petkov0828f5f2011-08-11 10:18:52 -0700241 void SetState(State state);
242
Darin Petkovc5f56562011-08-06 16:40:05 -0700243 void ConnectTask(const DBusPropertiesMap &properties);
Darin Petkovc0865312011-09-16 15:31:20 -0700244 void ScanTask();
Darin Petkovc408e692011-08-17 13:47:15 -0700245 void ActivateTask(const std::string &carrier);
Darin Petkov9ae310f2011-08-30 15:41:13 -0700246 void RegisterOnNetworkTask(const std::string &network_id);
Darin Petkove42e1012011-08-31 12:35:04 -0700247 void RequirePINTask(const std::string &pin, bool require);
248 void EnterPINTask(const std::string &pin);
249 void UnblockPINTask(const std::string &unblock_code, const std::string &pin);
250 void ChangePINTask(const std::string &old_pin, const std::string &new_pin);
Darin Petkovc5f56562011-08-06 16:40:05 -0700251
Darin Petkovbac96002011-08-09 13:22:00 -0700252 // Invoked when the modem is connected to the cellular network to transition
253 // to the network-connected state and bring the network interface up.
254 void EstablishLink();
255
Chris Masone889666b2011-07-03 12:58:50 -0700256 StrIntPair SimLockStatusToProperty();
Darin Petkov48a511a2011-09-15 10:33:37 -0700257
mukesh agrawalffa3d042011-10-06 15:26:10 -0700258 void HelpRegisterDerivedStrIntPair(
259 const std::string &name,
260 StrIntPair(Cellular::*get)(void),
261 void(Cellular::*set)(const StrIntPair&, Error *));
Chris Masone889666b2011-07-03 12:58:50 -0700262
Darin Petkovdaf43862011-10-27 11:37:28 +0200263 void InitCapability();
Darin Petkovbec79a22011-08-01 14:47:17 -0700264 void InitProxies();
265
Darin Petkovcc044422011-08-17 13:30:06 -0700266 std::string GetTypeString() const;
267 static std::string GetStateString(State state);
Darin Petkove9d12e02011-07-27 15:09:37 -0700268
Darin Petkovd2045802011-08-23 11:09:25 -0700269 // Returns an empty string if the network technology is unknown.
270 std::string GetNetworkTechnologyString() const;
271
272 std::string GetRoamingStateString() const;
273
Darin Petkovc408e692011-08-17 13:47:15 -0700274 static std::string GetCDMAActivationStateString(uint32 state);
Darin Petkov51489002011-08-18 13:13:20 -0700275 static std::string GetCDMAActivationErrorString(uint32 error);
Darin Petkovc408e692011-08-17 13:47:15 -0700276
Darin Petkovf5f61e02011-07-29 11:35:40 -0700277 void EnableModem();
278 void GetModemStatus();
Darin Petkovceb68172011-07-29 14:47:48 -0700279 void GetGSMProperties();
280 void RegisterGSMModem();
Darin Petkovceb68172011-07-29 14:47:48 -0700281
282 // Obtains the modem identifiers: MEID for CDMA; IMEI, IMSI, SPN and MSISDN
283 // for GSM.
284 void GetModemIdentifiers();
Darin Petkov975b5e72011-08-30 11:48:08 -0700285 void GetCDMAIdentifiers();
286 void GetGSMIdentifiers();
Darin Petkovceb68172011-07-29 14:47:48 -0700287
Darin Petkovd9661952011-08-03 16:25:42 -0700288 // Obtains modem's manufacturer, model ID, and hardware revision.
Darin Petkovceb68172011-07-29 14:47:48 -0700289 void GetModemInfo();
Darin Petkovf5f61e02011-07-29 11:35:40 -0700290
Darin Petkovbec79a22011-08-01 14:47:17 -0700291 void GetModemRegistrationState();
292 void GetCDMARegistrationState();
293 void GetGSMRegistrationState();
294
Darin Petkovd9661952011-08-03 16:25:42 -0700295 // Processes a change in the modem registration state, possibly creating,
296 // destroying or updating the CellularService.
297 void HandleNewRegistrationState();
Darin Petkov0828f5f2011-08-11 10:18:52 -0700298 void HandleNewRegistrationStateTask();
Darin Petkovd9661952011-08-03 16:25:42 -0700299
300 void CreateService();
301
302 void GetModemSignalQuality();
303 uint32 GetCDMASignalQuality();
304 uint32 GetGSMSignalQuality();
305
306 void HandleNewSignalQuality(uint32 strength);
307
Darin Petkovc408e692011-08-17 13:47:15 -0700308 void HandleNewCDMAActivationState(uint32 error);
309
Darin Petkovc0865312011-09-16 15:31:20 -0700310 Stringmap ParseScanResult(
311 const ModemGSMNetworkProxyInterface::ScanResult &result);
312
Darin Petkov580c7af2011-10-24 12:32:50 +0200313 // Signal callbacks inherited from ModemCDMAProxyDelegate.
Darin Petkovb27e5442011-08-16 14:36:45 -0700314 virtual void OnCDMAActivationStateChanged(
315 uint32 activation_state,
316 uint32 activation_error,
317 const DBusPropertiesMap &status_changes);
Darin Petkovd9661952011-08-03 16:25:42 -0700318 virtual void OnCDMARegistrationStateChanged(uint32 state_1x,
319 uint32 state_evdo);
320 virtual void OnCDMASignalQualityChanged(uint32 strength);
321
Darin Petkov580c7af2011-10-24 12:32:50 +0200322 // Signal callbacks inherited from ModemGSMNetworkProxyDelegate.
Darin Petkova1e0a1c2011-08-25 15:08:33 -0700323 virtual void OnGSMNetworkModeChanged(uint32 mode);
324 virtual void OnGSMRegistrationInfoChanged(uint32 status,
325 const std::string &operator_code,
326 const std::string &operator_name);
327 virtual void OnGSMSignalQualityChanged(uint32 quality);
328
Darin Petkov580c7af2011-10-24 12:32:50 +0200329 // Signal callbacks inherited from ModemProxyDelegate.
Darin Petkovc5f56562011-08-06 16:40:05 -0700330 virtual void OnModemStateChanged(uint32 old_state,
331 uint32 new_state,
332 uint32 reason);
333
Darin Petkovab565bb2011-10-06 02:55:51 -0700334 // Store cached copies of singletons for speed/ease of testing.
335 ProxyFactory *proxy_factory_;
336
Darin Petkove9d12e02011-07-27 15:09:37 -0700337 Type type_;
338 State state_;
Darin Petkovbac96002011-08-09 13:22:00 -0700339 ModemState modem_state_;
Darin Petkove9d12e02011-07-27 15:09:37 -0700340
Darin Petkovdaf43862011-10-27 11:37:28 +0200341 scoped_ptr<CellularCapability> capability_;
342
Darin Petkove9d12e02011-07-27 15:09:37 -0700343 const std::string dbus_owner_; // ModemManager.Modem
344 const std::string dbus_path_; // ModemManager.Modem
345 scoped_ptr<ModemProxyInterface> proxy_;
Darin Petkove604f702011-07-28 15:51:17 -0700346 scoped_ptr<ModemSimpleProxyInterface> simple_proxy_;
Darin Petkovbec79a22011-08-01 14:47:17 -0700347 scoped_ptr<ModemCDMAProxyInterface> cdma_proxy_;
Darin Petkov975b5e72011-08-30 11:48:08 -0700348 scoped_ptr<ModemGSMCardProxyInterface> gsm_card_proxy_;
Darin Petkova1e0a1c2011-08-25 15:08:33 -0700349 scoped_ptr<ModemGSMNetworkProxyInterface> gsm_network_proxy_;
Darin Petkovbec79a22011-08-01 14:47:17 -0700350
351 CDMA cdma_;
Darin Petkov9bac6fe2011-08-26 12:49:05 -0700352 GSM gsm_;
Darin Petkove9d12e02011-07-27 15:09:37 -0700353
Darin Petkovd9661952011-08-03 16:25:42 -0700354 CellularServiceRefPtr service_;
Chris Masone853b81b2011-06-24 14:11:41 -0700355
Darin Petkovc5f56562011-08-06 16:40:05 -0700356 ScopedRunnableMethodFactory<Cellular> task_factory_;
357
Chris Masoneb925cc82011-06-22 15:39:57 -0700358 // Properties
359 bool allow_roaming_;
360 std::string carrier_;
361 std::string meid_;
362 std::string imei_;
363 std::string imsi_;
364 std::string esn_;
365 std::string mdn_;
366 std::string min_;
367 std::string model_id_;
368 std::string manufacturer_;
369 std::string firmware_revision_;
370 std::string hardware_revision_;
Chris Masoneb925cc82011-06-22 15:39:57 -0700371 bool scanning_;
372 uint16 scan_interval_;
Darin Petkova1e0a1c2011-08-25 15:08:33 -0700373 std::string selected_network_;
Darin Petkovc0865312011-09-16 15:31:20 -0700374 Stringmaps found_networks_;
Chris Masone889666b2011-07-03 12:58:50 -0700375 SimLockStatus sim_lock_status_;
Darin Petkov3335b372011-08-22 11:05:32 -0700376 Operator home_provider_;
Chris Masoneb925cc82011-06-22 15:39:57 -0700377
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700378 DISALLOW_COPY_AND_ASSIGN(Cellular);
379};
380
381} // namespace shill
382
383#endif // SHILL_CELLULAR_