Home | History | Annotate | Download | only in chromeos

Lines Matching defs:carrier

28 // Carrier config attributes.
36 // Carrier deal attributes.
45 // Initial locale carrier config attributes.
52 // Location of the global carrier config.
56 // Location of the local carrier config.
110 // MobileConfig::Carrier implementation. ---------------------------------------
112 MobileConfig::Carrier::Carrier(const base::DictionaryValue* carrier_dict,
118 MobileConfig::Carrier::~Carrier() {
122 const MobileConfig::CarrierDeal* MobileConfig::Carrier::GetDefaultDeal() const {
123 // TODO(nkostylev): Use carrier "default_deal_id" attribute.
131 const MobileConfig::CarrierDeal* MobileConfig::Carrier::GetDeal(
148 void MobileConfig::Carrier::InitFromDictionary(
160 // Extract list of external IDs for this carrier.
173 // Extract list of deals for this carrier.
194 void MobileConfig::Carrier::RemoveDeals() {
220 const MobileConfig::Carrier* MobileConfig::GetCarrier(
266 // Carrier already defined i.e. loading from the local config.
270 Carrier* carrier = new Carrier(carrier_dict, initial_locale_);
271 if (!carrier->external_ids().empty()) {
274 i = carrier->external_ids().begin();
275 i != carrier->external_ids().end(); ++i) {
282 carriers_[internal_id] = carrier;