1 /* 2 * Copyright 2013 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 SkValidatingReadBuffer_DEFINED 9 #define SkValidatingReadBuffer_DEFINED 10 11 #include "SkRefCnt.h" 12 #include "SkReadBuffer.h" 13 #include "SkWriteBuffer.h" 14 #include "SkPath.h" 15 #include "SkPicture.h" 16 #include "SkReader32.h" 17 18 class SkBitmap; 19 20 // DEPRECATED -- just use SkReadBuffer (so we can delete this header) 21 typedef SkReadBuffer SkValidatingReadBuffer; 22 23 #endif 24