aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRecords.h
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2015-06-15 13:15:31 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-15 13:15:31 -0700
commit109a23d64ff9cf210e6b0aa8940b4fcea3f05a97 (patch)
tree3e64cbec385ca708853c135515af6f6247dbdd58 /src/core/SkRecords.h
parente0ef4a71570f5c7ef60004fc86adad072e1f8719 (diff)
Remove the SkCanvas comment API
No longer used in Chromium/Blink. R=reed@google.com,robertphillips@google.com,mtklein@google.com Review URL: https://codereview.chromium.org/1153593003
Diffstat (limited to 'src/core/SkRecords.h')
-rw-r--r--src/core/SkRecords.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/SkRecords.h b/src/core/SkRecords.h
index 2ce963367a..f4de5bdc3b 100644
--- a/src/core/SkRecords.h
+++ b/src/core/SkRecords.h
@@ -36,9 +36,6 @@ namespace SkRecords {
M(ClipRRect) \
M(ClipRect) \
M(ClipRegion) \
- M(BeginCommentGroup) \
- M(AddComment) \
- M(EndCommentGroup) \
M(DrawBitmap) \
M(DrawBitmapNine) \
M(DrawBitmapRectToRect) \
@@ -253,10 +250,6 @@ RECORD3(ClipRRect, SkIRect, devBounds, SkRRect, rrect, RegionOpAndAA, opA
RECORD3(ClipRect, SkIRect, devBounds, SkRect, rect, RegionOpAndAA, opAA);
RECORD3(ClipRegion, SkIRect, devBounds, SkRegion, region, SkRegion::Op, op);
-RECORD1(BeginCommentGroup, PODArray<char>, description);
-RECORD2(AddComment, PODArray<char>, key, PODArray<char>, value);
-RECORD0(EndCommentGroup);
-
// While not strictly required, if you have an SkPaint, it's fastest to put it first.
RECORD4(DrawBitmap, Optional<SkPaint>, paint,
ImmutableBitmap, bitmap,