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

Commit 497fe222 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add missing intdef links to proto"

parents 6a573dc2 f1f7451e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -21,14 +21,15 @@ package android.app;

import "frameworks/base/core/proto/android/graphics/rect.proto";
import "frameworks/base/core/proto/android/privacy.proto";
import "frameworks/base/core/proto/android/typedef.proto";

/** Proto representation for WindowConfiguration.java class. */
message WindowConfigurationProto {
    option (android.msg_privacy).dest = DEST_AUTOMATIC;

    optional .android.graphics.RectProto app_bounds = 1;
    optional int32 windowing_mode = 2;
    optional int32 activity_type = 3;
    optional int32 windowing_mode = 2 [(.android.typedef) = "android.app.WindowConfiguration.WindowingMode"];
    optional int32 activity_type = 3 [(.android.typedef) = "android.app.WindowConfiguration.ActivityType"];
    optional .android.graphics.RectProto bounds = 4;
    optional .android.graphics.RectProto max_bounds = 5;
}