Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3414)

Unified Diff: cc/paint/paint_canvas.cc

Issue 2768143002: Back PaintRecord with PaintOpBuffer instead of SkPicture (Closed)
Patch Set: More unit tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: cc/paint/paint_canvas.cc
diff --git a/cc/paint/paint_canvas.cc b/cc/paint/paint_canvas.cc
index f4c348f7c015e64a0dc9a2a3903422215eec847f..4aab0652b19c668103cdc737869de13e4fc176a0 100644
--- a/cc/paint/paint_canvas.cc
+++ b/cc/paint/paint_canvas.cc
@@ -37,22 +37,4 @@ bool IsPreviewMetafile(PaintCanvas* canvas) {
}
#endif
-void PaintCanvasAnnotateRectWithURL(PaintCanvas* canvas,
- const SkRect& rect,
- SkData* data) {
- canvas->AnnotateRectWithURL(rect, data);
-}
-
-void PaintCanvasAnnotateNamedDestination(PaintCanvas* canvas,
- const SkPoint& point,
- SkData* data) {
- canvas->AnnotateNamedDestination(point, data);
-}
-
-void PaintCanvasAnnotateLinkToDestination(PaintCanvas* canvas,
- const SkRect& rect,
- SkData* data) {
- canvas->AnnotateLinkToDestination(rect, data);
-}
-
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698