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_OVERVIEW_H_ 9 #define SAMPLECODE_OVERVIEW_H_ 10 11 class SkView; 12 class SkViewFactory; 13 14 SkView* create_overview(int, const SkViewFactory*[]); 15 16 bool is_overview(SkView* view); 17 18 #endif // SAMPLECODE_OVERVIEW_H_ 19