12f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi/*
22f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * Copyright (C) 2015 The Android Open Source Project
32f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi *
42f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * Licensed under the Apache License, Version 2.0 (the "License");
52f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * you may not use this file except in compliance with the License.
62f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * You may obtain a copy of the License at
72f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi *
82f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi *      http://www.apache.org/licenses/LICENSE-2.0
92f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi *
102f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * Unless required by applicable law or agreed to in writing, software
112f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * distributed under the License is distributed on an "AS IS" BASIS,
122f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * See the License for the specific language governing permissions and
142f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * limitations under the License.
152f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi */
162f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi
172f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggipackage android.view;
182f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi
192f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggiimport android.view.AppTransitionAnimationSpec;
202f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi
212f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi/**
222f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * A cross-process future to fetch the specifications for app transitions.
232f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi *
242f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi * {@hide}
252f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi */
262f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggiinterface IAppTransitionAnimationSpecsFuture {
272f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi    AppTransitionAnimationSpec[] get();
282f7d292596bdba15e441046e3a2e047f37d6ea59Jorim Jaggi}
29