Home | History | Annotate | Download | only in cros

Lines Matching defs:plan

66 // TODO(stevenjb): Document cellular data plan handlers.
93 // How long we should remember that cellular plan payment was received.
1443 // Time based plan. Show nearing expiration and data expiration.
1449 // Metered plan. Show low data and out of data.
1485 // Time based plan. Show nearing expiration and data expiration.
1489 // Metered plan. Show low data and out of data.
1508 // A cellular plan is uniquely described by the union of name, type,
2448 // If we need a new plan, then ignore any data plans we have.
2788 // Returns true if cellular plan payment had been recorded recently.
3987 // Set significant to the first plan or to first non metered base plan.
3997 const CellularDataPlan* plan = GetSignificantDataPlanFromVector(data_plans);
3998 if (!plan)
4000 if (plan->plan_type == CELLULAR_DATA_PLAN_UNLIMITED) {
4001 base::TimeDelta remaining = plan->remaining_time();
4009 } else if (plan->plan_type == CELLULAR_DATA_PLAN_METERED_PAID ||
4010 plan->plan_type == CELLULAR_DATA_PLAN_METERED_BASE) {
4011 int64 remaining = plan->remaining_data();
4018 plan->plan_type != CELLULAR_DATA_PLAN_METERED_BASE)
4040 CellularDataPlan* plan = new CellularDataPlan(*info);
4041 data_plans->push_back(plan);
4042 VLOG(2) << " Plan: " << plan->GetPlanDesciption()
4043 << " : " << plan->GetDataRemainingDesciption();
4049 // If the network needs a new plan, then there's no data.
4055 << " Need plan: " << cellular->needs_new_plan();
4156 base_plan->plan_name = "Base plan";
4165 paid_plan->plan_name = "Paid plan";
4224 // Cellular data plan observer list
4242 // For monitoring data plan changes to the connected cellular network.
4317 // Cellular plan payment time.