diff options
| author | 2019-09-13 06:38:34 +0000 | |
|---|---|---|
| committer | 2019-09-13 06:38:34 +0000 | |
| commit | 4a4282f20cc72d6db32c4c57a9d150d50c9a867e (patch) | |
| tree | 3b21914f4c7f445391de75fb676fab48c8c08352 | |
| parent | 017d7e43604a7b130f031cd9f0e51323b8d6f13e (diff) | |
| parent | 676cdb31d8f3523eb314c8d1c5e506012eee39a9 (diff) | |
Merge "Define SurfaceControl.Transaction aidl in SurfaceControl.aidl file"
| -rw-r--r-- | core/java/android/view/IWindowSession.aidl | 4 | ||||
| -rw-r--r-- | core/java/android/view/SurfaceControl.aidl | 1 | ||||
| -rw-r--r-- | core/java/android/view/Transaction.aidl | 19 |
3 files changed, 3 insertions, 21 deletions
diff --git a/core/java/android/view/IWindowSession.aidl b/core/java/android/view/IWindowSession.aidl index f73f28a943c3..6ce5ac4197ea 100644 --- a/core/java/android/view/IWindowSession.aidl +++ b/core/java/android/view/IWindowSession.aidl @@ -31,7 +31,7 @@ import android.view.WindowManager; import android.view.InsetsState; import android.view.Surface; import android.view.SurfaceControl; -import android.view.Transaction; +import android.view.SurfaceControl.Transaction; import java.util.List; @@ -156,7 +156,7 @@ interface IWindowSession { * is null if there is no sync required. */ @UnsupportedAppUsage - void finishDrawing(IWindow window, in Transaction postDrawTransaction); + void finishDrawing(IWindow window, in SurfaceControl.Transaction postDrawTransaction); @UnsupportedAppUsage void setInTouchMode(boolean showFocus); diff --git a/core/java/android/view/SurfaceControl.aidl b/core/java/android/view/SurfaceControl.aidl index 744ead2be643..6c51ae934ba3 100644 --- a/core/java/android/view/SurfaceControl.aidl +++ b/core/java/android/view/SurfaceControl.aidl @@ -17,3 +17,4 @@ package android.view; parcelable SurfaceControl; +parcelable SurfaceControl.Transaction; diff --git a/core/java/android/view/Transaction.aidl b/core/java/android/view/Transaction.aidl deleted file mode 100644 index 8d24b437e044..000000000000 --- a/core/java/android/view/Transaction.aidl +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (C) 2019 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package android.view.SurfaceControl; - -parcelable Transaction; |