13b6ba1ab144c53752841869627a1b9f6d357c404Winson/*
23b6ba1ab144c53752841869627a1b9f6d357c404Winson * Copyright (C) 2016 The Android Open Source Project
33b6ba1ab144c53752841869627a1b9f6d357c404Winson *
43b6ba1ab144c53752841869627a1b9f6d357c404Winson * Licensed under the Apache License, Version 2.0 (the "License");
53b6ba1ab144c53752841869627a1b9f6d357c404Winson * you may not use this file except in compliance with the License.
63b6ba1ab144c53752841869627a1b9f6d357c404Winson * You may obtain a copy of the License at
73b6ba1ab144c53752841869627a1b9f6d357c404Winson *
83b6ba1ab144c53752841869627a1b9f6d357c404Winson *      http://www.apache.org/licenses/LICENSE-2.0
93b6ba1ab144c53752841869627a1b9f6d357c404Winson *
103b6ba1ab144c53752841869627a1b9f6d357c404Winson * Unless required by applicable law or agreed to in writing, software
113b6ba1ab144c53752841869627a1b9f6d357c404Winson * distributed under the License is distributed on an "AS IS" BASIS,
123b6ba1ab144c53752841869627a1b9f6d357c404Winson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133b6ba1ab144c53752841869627a1b9f6d357c404Winson * See the License for the specific language governing permissions and
143b6ba1ab144c53752841869627a1b9f6d357c404Winson * limitations under the License.
153b6ba1ab144c53752841869627a1b9f6d357c404Winson */
163b6ba1ab144c53752841869627a1b9f6d357c404Winson
173b6ba1ab144c53752841869627a1b9f6d357c404Winsonpackage com.android.systemui.recents.events.ui;
183b6ba1ab144c53752841869627a1b9f6d357c404Winson
193b6ba1ab144c53752841869627a1b9f6d357c404Winsonimport com.android.systemui.recents.events.EventBus;
203b6ba1ab144c53752841869627a1b9f6d357c404Winsonimport com.android.systemui.recents.views.TaskView;
213b6ba1ab144c53752841869627a1b9f6d357c404Winson
223b6ba1ab144c53752841869627a1b9f6d357c404Winson/**
233b6ba1ab144c53752841869627a1b9f6d357c404Winson * This event is sent to request that all the {@link TaskView}s are dismissed.
243b6ba1ab144c53752841869627a1b9f6d357c404Winson */
253b6ba1ab144c53752841869627a1b9f6d357c404Winsonpublic class DismissAllTaskViewsEvent extends EventBus.AnimatedEvent {
263b6ba1ab144c53752841869627a1b9f6d357c404Winson    // Simple event
273b6ba1ab144c53752841869627a1b9f6d357c404Winson}
28