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

Commit 52bf7808 authored by Alec Mouri's avatar Alec Mouri
Browse files

Increase layer upload limit to 200.

This is the same as the in-memory tracking limit. We'll use this to
increase data quality & measure how much data we're dropping
server-side.

Bug: 177999557
Test: builds
Change-Id: I60c5b71b8f2d5e2a7cad517b3b56219381d21fd5
parent dd5bfa93
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -315,8 +315,9 @@ private:

    static const size_t MAX_NUM_LAYER_RECORDS = 200;
    static const size_t MAX_NUM_LAYER_STATS = 200;
    static const size_t MAX_NUM_PULLED_LAYERS = MAX_NUM_LAYER_STATS;
    std::unique_ptr<StatsEventDelegate> mStatsDelegate = std::make_unique<StatsEventDelegate>();
    size_t mMaxPulledLayers = 8;
    size_t mMaxPulledLayers = MAX_NUM_PULLED_LAYERS;
    size_t mMaxPulledHistogramBuckets = 6;
};