1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.systemui.shared.recents.view;
17
18import android.graphics.Bitmap;
19import android.graphics.Rect;
20import android.view.AppTransitionAnimationSpec;
21
22/**
23 * Wraps the internal app transition animation spec.
24 */
25public class AppTransitionAnimationSpecCompat {
26
27    private int mTaskId;
28    private Bitmap mBuffer;
29    private Rect mRect;
30
31    public AppTransitionAnimationSpecCompat(int taskId, Bitmap buffer, Rect rect) {
32        mTaskId = taskId;
33        mBuffer = buffer;
34        mRect = rect;
35    }
36
37    public AppTransitionAnimationSpec toAppTransitionAnimationSpec() {
38        return new AppTransitionAnimationSpec(mTaskId,
39                mBuffer != null ? mBuffer.createGraphicBufferHandle() : null, mRect);
40    }
41}
42