1397ae74733ce934a3fc260258c2902f4e3b995a2Winson/*
2397ae74733ce934a3fc260258c2902f4e3b995a2Winson * Copyright (C) 2015 The Android Open Source Project
3397ae74733ce934a3fc260258c2902f4e3b995a2Winson *
4397ae74733ce934a3fc260258c2902f4e3b995a2Winson * Licensed under the Apache License, Version 2.0 (the "License");
5397ae74733ce934a3fc260258c2902f4e3b995a2Winson * you may not use this file except in compliance with the License.
6397ae74733ce934a3fc260258c2902f4e3b995a2Winson * You may obtain a copy of the License at
7397ae74733ce934a3fc260258c2902f4e3b995a2Winson *
8397ae74733ce934a3fc260258c2902f4e3b995a2Winson *      http://www.apache.org/licenses/LICENSE-2.0
9397ae74733ce934a3fc260258c2902f4e3b995a2Winson *
10397ae74733ce934a3fc260258c2902f4e3b995a2Winson * Unless required by applicable law or agreed to in writing, software
11397ae74733ce934a3fc260258c2902f4e3b995a2Winson * distributed under the License is distributed on an "AS IS" BASIS,
12397ae74733ce934a3fc260258c2902f4e3b995a2Winson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13397ae74733ce934a3fc260258c2902f4e3b995a2Winson * See the License for the specific language governing permissions and
14397ae74733ce934a3fc260258c2902f4e3b995a2Winson * limitations under the License.
15397ae74733ce934a3fc260258c2902f4e3b995a2Winson */
16397ae74733ce934a3fc260258c2902f4e3b995a2Winson
17397ae74733ce934a3fc260258c2902f4e3b995a2Winsonpackage com.android.systemui.recents.events.ui;
18397ae74733ce934a3fc260258c2902f4e3b995a2Winson
19397ae74733ce934a3fc260258c2902f4e3b995a2Winsonimport com.android.systemui.recents.events.EventBus;
20397ae74733ce934a3fc260258c2902f4e3b995a2Winson
21397ae74733ce934a3fc260258c2902f4e3b995a2Winson/**
22397ae74733ce934a3fc260258c2902f4e3b995a2Winson * This is sent whenever all the task views in a stack have been dismissed.
23397ae74733ce934a3fc260258c2902f4e3b995a2Winson */
24397ae74733ce934a3fc260258c2902f4e3b995a2Winsonpublic class AllTaskViewsDismissedEvent extends EventBus.Event {
252068408d08ca39a5b036daac01e80de45e8c1eabWinson
262068408d08ca39a5b036daac01e80de45e8c1eabWinson    public final int msgResId;
272068408d08ca39a5b036daac01e80de45e8c1eabWinson
282068408d08ca39a5b036daac01e80de45e8c1eabWinson    public AllTaskViewsDismissedEvent(int msgResId) {
292068408d08ca39a5b036daac01e80de45e8c1eabWinson        this.msgResId = msgResId;
302068408d08ca39a5b036daac01e80de45e8c1eabWinson    }
31397ae74733ce934a3fc260258c2902f4e3b995a2Winson}
32