| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkNulCanvas_DEFINED | 8 #ifndef SkNulCanvas_DEFINED |
| 9 #define SkNulCanvas_DEFINED | 9 #define SkNulCanvas_DEFINED |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 const SkPaint& paint) SK_OVERRIDE {} | 96 const SkPaint& paint) SK_OVERRIDE {} |
| 97 virtual void onDrawTextOnPath(const void* text, size_t byteLength, | 97 virtual void onDrawTextOnPath(const void* text, size_t byteLength, |
| 98 const SkPath& path, const SkMatrix* matrix, | 98 const SkPath& path, const SkMatrix* matrix, |
| 99 const SkPaint& paint) SK_OVERRIDE {} | 99 const SkPaint& paint) SK_OVERRIDE {} |
| 100 | 100 |
| 101 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE {} | 101 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE {} |
| 102 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE
RRIDE {} | 102 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE
RRIDE {} |
| 103 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE {} | 103 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR
IDE {} |
| 104 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE {} | 104 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE {} |
| 105 | 105 |
| 106 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE {} | 106 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*
) SK_OVERRIDE {} |
| 107 | 107 |
| 108 private: | 108 private: |
| 109 typedef SkCanvas INHERITED; | 109 typedef SkCanvas INHERITED; |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 #endif // SkNulCanvas_DEFINED | 112 #endif // SkNulCanvas_DEFINED |
| OLD | NEW |