diff options
-rw-r--r-- | cmds/statsd/src/atoms.proto | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cmds/statsd/src/atoms.proto b/cmds/statsd/src/atoms.proto index 55e1186d8610..8416ff4d557e 100644 --- a/cmds/statsd/src/atoms.proto +++ b/cmds/statsd/src/atoms.proto @@ -3612,11 +3612,11 @@ message AppStartOccurred { // Empty if not set. optional string launch_token = 13; - // The compiler filter used when when the package was optimized. - optional int32 package_optimization_compilation_filter = 14; - // The reason why the package was optimized. - optional int32 package_optimization_compilation_reason = 15; + optional int32 package_optimization_compilation_reason = 14; + + // The compiler filter used when when the package was optimized. + optional int32 package_optimization_compilation_filter = 15; } message AppStartCanceled { @@ -3662,11 +3662,11 @@ message AppStartFullyDrawn { // App startup time (until call to Activity#reportFullyDrawn()). optional int64 app_startup_time_millis = 6; - // The compiler filter used when when the package was optimized. - optional int32 package_optimization_compilation_filter = 7; - // The reason why the package was optimized. - optional int32 package_optimization_compilation_reason = 8; + optional int32 package_optimization_compilation_reason = 7; + + // The compiler filter used when when the package was optimized. + optional int32 package_optimization_compilation_filter = 8; } /** |