15a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He/*
25a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * Copyright (C) 2016 The Android Open Source Project
35a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He *
45a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * Licensed under the Apache License, Version 2.0 (the "License");
55a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * you may not use this file except in compliance with the License.
65a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * You may obtain a copy of the License at
75a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He *
85a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He *      http://www.apache.org/licenses/LICENSE-2.0
95a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He *
105a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * Unless required by applicable law or agreed to in writing, software
115a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * distributed under the License is distributed on an "AS IS" BASIS,
125a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
135a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * See the License for the specific language governing permissions and
145a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He * limitations under the License.
155a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He */
165a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He
175a2eb83383c013ea0481e6688f22d892c61286ffJiaquan Hepackage com.android.systemui.recents.views.grid;
185a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He
195a2eb83383c013ea0481e6688f22d892c61286ffJiaquan Heimport android.view.View;
205a2eb83383c013ea0481e6688f22d892c61286ffJiaquan Heimport com.android.systemui.recents.views.AnimateableViewBounds;
215a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He
225a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He/* An outline provider for grid-based task views. */
235a2eb83383c013ea0481e6688f22d892c61286ffJiaquan Heclass AnimateableGridViewBounds extends AnimateableViewBounds {
245a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He
255a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He    public AnimateableGridViewBounds(View source, int cornerRadius) {
265a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He        super(source, cornerRadius);
275a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He    }
285a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He
295a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He    @Override
305a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He    protected void updateClipBounds() {
315a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He    }
325a2eb83383c013ea0481e6688f22d892c61286ffJiaquan He}
33