Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2012 Google Inc. | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 #ifndef SAMPLECODE_TRANSITIONVIEW_H_ | |
| 9 #define SAMPLECODE_TRANSITIONVIEW_H_ | |
| 10 | |
| 11 class SkView; | |
| 12 | |
| 13 SkView* create_transition(SkView* prev, SkView* next, int direction); | |
| 14 | |
| 15 bool is_transition(SkView* view); | |
| 16 | |
| 17 #endif // SAMPLECODE_TRANSITIONVIEW_H_ | |
| OLD | NEW |