diff options
| author | 2023-06-22 18:49:40 +0000 | |
|---|---|---|
| committer | 2023-06-22 18:49:40 +0000 | |
| commit | ee9db03d70ad89ebb5418ef1630c73e90f8e9730 (patch) | |
| tree | d7b4bf432e7b8009915ac69fa8bebca1835635ef /services/surfaceflinger/Layer.cpp | |
| parent | ff3e52c1133529bb7cccc97563bfa05a74411c6c (diff) | |
| parent | aeebeb4eca5967d2a893ac09464499301936a134 (diff) | |
Merge "Use a strongly typed Pid in WindowInfo"
Diffstat (limited to 'services/surfaceflinger/Layer.cpp')
| -rw-r--r-- | services/surfaceflinger/Layer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/Layer.cpp b/services/surfaceflinger/Layer.cpp index a5d7ce7966..5a010e8af6 100644 --- a/services/surfaceflinger/Layer.cpp +++ b/services/surfaceflinger/Layer.cpp @@ -2453,7 +2453,7 @@ WindowInfo Layer::fillInputInfo(const InputDisplayArgs& displayArgs) { if (!hasInputInfo()) { mDrawingState.inputInfo.name = getName(); mDrawingState.inputInfo.ownerUid = gui::Uid{mOwnerUid}; - mDrawingState.inputInfo.ownerPid = mOwnerPid; + mDrawingState.inputInfo.ownerPid = gui::Pid{mOwnerPid}; mDrawingState.inputInfo.inputConfig |= WindowInfo::InputConfig::NO_INPUT_CHANNEL; mDrawingState.inputInfo.displayId = getLayerStack().id; } |