19b001396c26e5b5ee95e0a54213a8a421179e365Winson/*
29b001396c26e5b5ee95e0a54213a8a421179e365Winson * Copyright (C) 2016 The Android Open Source Project
39b001396c26e5b5ee95e0a54213a8a421179e365Winson *
49b001396c26e5b5ee95e0a54213a8a421179e365Winson * Licensed under the Apache License, Version 2.0 (the "License");
59b001396c26e5b5ee95e0a54213a8a421179e365Winson * you may not use this file except in compliance with the License.
69b001396c26e5b5ee95e0a54213a8a421179e365Winson * You may obtain a copy of the License at
79b001396c26e5b5ee95e0a54213a8a421179e365Winson *
89b001396c26e5b5ee95e0a54213a8a421179e365Winson *      http://www.apache.org/licenses/LICENSE-2.0
99b001396c26e5b5ee95e0a54213a8a421179e365Winson *
109b001396c26e5b5ee95e0a54213a8a421179e365Winson * Unless required by applicable law or agreed to in writing, software
119b001396c26e5b5ee95e0a54213a8a421179e365Winson * distributed under the License is distributed on an "AS IS" BASIS,
129b001396c26e5b5ee95e0a54213a8a421179e365Winson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
139b001396c26e5b5ee95e0a54213a8a421179e365Winson * See the License for the specific language governing permissions and
149b001396c26e5b5ee95e0a54213a8a421179e365Winson * limitations under the License.
159b001396c26e5b5ee95e0a54213a8a421179e365Winson */
169b001396c26e5b5ee95e0a54213a8a421179e365Winson
179b001396c26e5b5ee95e0a54213a8a421179e365Winsonpackage com.android.systemui.recents.events.ui;
189b001396c26e5b5ee95e0a54213a8a421179e365Winson
199b001396c26e5b5ee95e0a54213a8a421179e365Winsonimport com.android.systemui.recents.events.EventBus;
209b001396c26e5b5ee95e0a54213a8a421179e365Winson
219b001396c26e5b5ee95e0a54213a8a421179e365Winson/**
229b001396c26e5b5ee95e0a54213a8a421179e365Winson * This is sent when a user starts dragging an incompatible app task.
239b001396c26e5b5ee95e0a54213a8a421179e365Winson */
249b001396c26e5b5ee95e0a54213a8a421179e365Winsonpublic class ShowIncompatibleAppOverlayEvent extends EventBus.Event {
259b001396c26e5b5ee95e0a54213a8a421179e365Winson    // Simple event
269b001396c26e5b5ee95e0a54213a8a421179e365Winson}
27