/external/chromium_org/chrome/browser/chromeos/ |
mobile_config.h | 25 // Class that processes mobile (carrier) configuration. 29 // 1. All global config data is inherited unless some carrier properties 30 // are overidden or carrier deals are explicitly marked as excluded. 31 // 2. Local config could mark that all carrier deals should be excluded or 32 // only specific carrier deals are excluded. 39 // Carrier deal. 68 // Carrier config. 69 class Carrier { 71 Carrier(const base::DictionaryValue* carrier_dict, 73 ~Carrier(); [all...] |
mobile_config.cc | 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() { 270 Carrier* carrier = new Carrier(carrier_dict, initial_locale_); local [all...] |
mobile_config_unittest.cc | 18 " \"carrier (country)\" : {\n" 25 " \"id\": \"Carrier (country)\",\n" 29 " \"top_up_url\" : \"http://www.carrier.com/\",\n" 39 " \"notification_text\" : \"3G connectivity : Carrier.\",\n" 51 " \"setup_url\" : \"accounts.carrier.com\",\n" 60 " \"Carrier (country)\" : {\n" 61 " \"top_up_url\" : \"http://www.carrier.com/\",\n" 70 " \"notification_text\" : \"3G connectivity : Carrier.\",\n" 94 " \"carrier (country)\" : {\n" 96 " \"top_up_url\" : \"http://www.carrier-new-url.com/\",\n 130 const MobileConfig::Carrier* carrier; local 168 const MobileConfig::Carrier* carrier; local 182 const MobileConfig::Carrier* carrier; local 200 const MobileConfig::Carrier* carrier; local 216 const MobileConfig::Carrier* carrier; local [all...] |
/external/chromium_org/chrome/browser/chromeos/status/ |
data_promo_notification.cc | 76 // carrier deal notification has been shown to users on this machine. 85 const chromeos::MobileConfig::Carrier* GetCarrier( 91 NET_LOG_ERROR("Empty carrier ID for cellular network", 104 const chromeos::MobileConfig::Carrier* carrier) { 105 const chromeos::MobileConfig::CarrierDeal* deal = carrier->GetDefaultDeal(); 114 NET_LOG_DEBUG("Carrier Deal Found", deal_text); 151 // Carrier deal notification shown count defaults to 0. 170 // of Mobile Data connection or if there is a carrier deal defined 185 const MobileConfig::Carrier* carrier = GetCarrier(default_network) local [all...] |
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
internet_options_handler.cc | 209 // MobileConfig carrier indicates that "View Account" should be shown. 213 const MobileConfig::Carrier* carrier = local 215 if (!carrier || !carrier->show_portal_button()) 466 if (device && (device->carrier() == shill::kCarrierSprint)) { 479 std::string carrier; local 482 !args->GetString(1, &carrier)) { 494 carrier, [all...] |
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
internet_detail.js | 182 // In Chrome we sometimes want to enable the Cellular carrier select UI. [all...] |