Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d64e9452 authored by govenliu's avatar govenliu
Browse files

[Wi-Fi] Add proto fields for Openroaming network.

Add two new proto fields for Openroaming network use.

In settings -> Network and Internet -> Wi-Fi, user may click on an Openroaming Wi-Fi AP for Wi-Fi service, so need to add two metrics to record this behavior:
1. OPENROAMING_TAP: records when user tap on the Openroaming Wi-Fi.
2. OPENROAMING_TAP_ON_WIFI_CONNECTION: records when user alreay connected to any wi-Fi network but still tap on the Openroaming Wi-Fi to change to Openroaming.

Bug: 146669261
Test: No, just add proto fields.
Change-Id: If203761052646e3a9df6e9a76fd5268c3db965fd
parent 142eceea
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -2678,4 +2678,15 @@ enum PageId {
    // CATEGORY: SETTINGS
    // OS: R
    DEVICE_CONTROLS_SETTINGS = 1844;

    // ACTION: Settings > Wi-Fi > Tap on Openroaming Wi-Fi
    // CATEGORY: SETTINGS
    // OS: R
    OPENROAMING_TAP  = 1845;

    // When device already using any Wi-Fi service, to track if user still want to use Openroaming
    // ACTION: Settings > Wi-Fi > Tap on Openroaming Wi-Fi
    // CATEGORY: SETTINGS
    // OS: R
    OPENROAMING_TAP_ON_WIFI_CONNECTION  = 1846;
}