Home | History | Annotate | Download | only in chromeos

Lines Matching defs:Carrier

29 // Carrier config attributes.
37 // Carrier deal attributes.
47 // Initial locale carrier config attributes.
54 // Location of the global carrier config.
58 // Location of the local carrier config.
112 // MobileConfig::Carrier implementation. ---------------------------------------
114 MobileConfig::Carrier::Carrier(const DictionaryValue* carrier_dict,
120 MobileConfig::Carrier::~Carrier() {
124 const MobileConfig::CarrierDeal* MobileConfig::Carrier::GetDefaultDeal() const {
125 // TODO(nkostylev): Use carrier "default_deal_id" attribute.
133 const MobileConfig::CarrierDeal* MobileConfig::Carrier::GetDeal(
150 void MobileConfig::Carrier::InitFromDictionary(
162 // Extract list of external IDs for this carrier.
175 // Extract list of deals for this carrier.
196 void MobileConfig::Carrier::RemoveDeals() {
222 const MobileConfig::Carrier* MobileConfig::GetCarrier(
268 // Carrier already defined i.e. loading from the local config.
272 Carrier* carrier = new Carrier(carrier_dict, initial_locale_);
273 if (!carrier->external_ids().empty()) {
276 i = carrier->external_ids().begin();
277 i != carrier->external_ids().end(); ++i) {
284 carriers_[internal_id] = carrier;