12536c7ed446203ea12b38cf05a88e603f8d1b768Winson/*
22536c7ed446203ea12b38cf05a88e603f8d1b768Winson * Copyright (C) 2015 The Android Open Source Project
32536c7ed446203ea12b38cf05a88e603f8d1b768Winson *
42536c7ed446203ea12b38cf05a88e603f8d1b768Winson * Licensed under the Apache License, Version 2.0 (the "License");
52536c7ed446203ea12b38cf05a88e603f8d1b768Winson * you may not use this file except in compliance with the License.
62536c7ed446203ea12b38cf05a88e603f8d1b768Winson * You may obtain a copy of the License at
72536c7ed446203ea12b38cf05a88e603f8d1b768Winson *
82536c7ed446203ea12b38cf05a88e603f8d1b768Winson *      http://www.apache.org/licenses/LICENSE-2.0
92536c7ed446203ea12b38cf05a88e603f8d1b768Winson *
102536c7ed446203ea12b38cf05a88e603f8d1b768Winson * Unless required by applicable law or agreed to in writing, software
112536c7ed446203ea12b38cf05a88e603f8d1b768Winson * distributed under the License is distributed on an "AS IS" BASIS,
122536c7ed446203ea12b38cf05a88e603f8d1b768Winson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132536c7ed446203ea12b38cf05a88e603f8d1b768Winson * See the License for the specific language governing permissions and
142536c7ed446203ea12b38cf05a88e603f8d1b768Winson * limitations under the License.
152536c7ed446203ea12b38cf05a88e603f8d1b768Winson */
162536c7ed446203ea12b38cf05a88e603f8d1b768Winson
172536c7ed446203ea12b38cf05a88e603f8d1b768Winsonpackage com.android.systemui.recents.events.ui;
182536c7ed446203ea12b38cf05a88e603f8d1b768Winson
192536c7ed446203ea12b38cf05a88e603f8d1b768Winsonimport com.android.systemui.recents.events.EventBus;
202536c7ed446203ea12b38cf05a88e603f8d1b768Winsonimport com.android.systemui.recents.model.Task;
212536c7ed446203ea12b38cf05a88e603f8d1b768Winson
222536c7ed446203ea12b38cf05a88e603f8d1b768Winson/**
232536c7ed446203ea12b38cf05a88e603f8d1b768Winson * This is sent when a user wants to show the application info for a {@link Task}.
242536c7ed446203ea12b38cf05a88e603f8d1b768Winson */
252536c7ed446203ea12b38cf05a88e603f8d1b768Winsonpublic class ShowApplicationInfoEvent extends EventBus.Event {
262536c7ed446203ea12b38cf05a88e603f8d1b768Winson
272536c7ed446203ea12b38cf05a88e603f8d1b768Winson    public final Task task;
282536c7ed446203ea12b38cf05a88e603f8d1b768Winson
292536c7ed446203ea12b38cf05a88e603f8d1b768Winson    public ShowApplicationInfoEvent(Task task) {
302536c7ed446203ea12b38cf05a88e603f8d1b768Winson        this.task = task;
312536c7ed446203ea12b38cf05a88e603f8d1b768Winson    }
322536c7ed446203ea12b38cf05a88e603f8d1b768Winson}
33