SplashScreenSurface.java revision ba41f4b9e3629c097cdd7b6538c5bcf4602728b8
1/*
2 * Copyright (C) 2016 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 */
16
17package com.android.server.policy;
18
19import android.view.View;
20import android.view.WindowManagerPolicy;
21import android.view.WindowManagerPolicy.StartingSurface;
22
23import com.android.internal.policy.DecorView;
24import com.android.internal.policy.PhoneWindow;
25
26/**
27 * Holds the contents of a splash screen starting window, i.e. the {@link DecorView} of a
28 * {@link PhoneWindow}. This is just a wrapper such that we can return it from
29 * {@link WindowManagerPolicy#addSplashScreen}.
30 */
31class SplashScreenSurface implements StartingSurface {
32
33    final View view;
34
35    SplashScreenSurface(View view) {
36        this.view = view;
37    }
38}
39