Chromium Code Reviews| Index: chrome/browser/chromeos/mobile/mobile_activator.h |
| diff --git a/chrome/browser/chromeos/mobile/mobile_activator.h b/chrome/browser/chromeos/mobile/mobile_activator.h |
| index 49ea96c7b5b257bc0be7f70541e247a245154f42..d2691121b58a5555148136828716b53cd1e8a2c9 100644 |
| --- a/chrome/browser/chromeos/mobile/mobile_activator.h |
| +++ b/chrome/browser/chromeos/mobile/mobile_activator.h |
| @@ -62,20 +62,24 @@ class MobileActivator |
| PLAN_ACTIVATION_TRYING_OTASP = 1, |
| // Performing pre-activation process. |
| PLAN_ACTIVATION_INITIATING_ACTIVATION = 3, |
| - // Reconnecting to network. |
| + // Reconnecting to network. Used for networks activated over cellular |
| + // connection. |
| PLAN_ACTIVATION_RECONNECTING = 4, |
| + // Passively waiting for a network connection. Used for networks activated |
| + // over non-cellular network. |
| + PLAN_ACTIVATION_WAITING_FOR_CONNECTION = 5, |
|
rkc
2013/03/14 01:55:19
align with other values.
tbarzic
2013/03/14 02:06:07
ohhh, this line did look weird, but I couldn't fig
|
| // Loading payment portal page. |
| - PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING = 5, |
| + PLAN_ACTIVATION_PAYMENT_PORTAL_LOADING = 6, |
| // Showing payment portal page. |
| - PLAN_ACTIVATION_SHOWING_PAYMENT = 6, |
| + PLAN_ACTIVATION_SHOWING_PAYMENT = 7, |
| // Decides whether to load the portal again or call us done. |
| - PLAN_ACTIVATION_RECONNECTING_PAYMENT = 7, |
| + PLAN_ACTIVATION_RECONNECTING_PAYMENT = 8, |
| // Delaying activation until payment portal catches up. |
| - PLAN_ACTIVATION_DELAY_OTASP = 8, |
| + PLAN_ACTIVATION_DELAY_OTASP = 9, |
| // Starting post-payment activation attempt. |
| - PLAN_ACTIVATION_START_OTASP = 9, |
| + PLAN_ACTIVATION_START_OTASP = 10, |
| // Attempting activation. |
| - PLAN_ACTIVATION_OTASP = 10, |
| + PLAN_ACTIVATION_OTASP = 11, |
| // Finished activation. |
| PLAN_ACTIVATION_DONE = 12, |
| // Error occured during activation process. |