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

Unified Diff: src/utils/SkNWayCanvas.cpp

Issue 1153593003: Remove the SkCanvas comment API (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: rebased Created 5 years, 6 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
« no previous file with comments | « src/utils/SkDumpCanvas.cpp ('k') | src/utils/debugger/SkDebugCanvas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/utils/SkNWayCanvas.cpp
diff --git a/src/utils/SkNWayCanvas.cpp b/src/utils/SkNWayCanvas.cpp
index 14ad6d6f81ef274182baa34bebaa540b216f79ab..8ae842237ffa34830ada900505e727edd5bd581c 100644
--- a/src/utils/SkNWayCanvas.cpp
+++ b/src/utils/SkNWayCanvas.cpp
@@ -308,24 +308,3 @@ SkDrawFilter* SkNWayCanvas::setDrawFilter(SkDrawFilter* filter) {
}
return this->INHERITED::setDrawFilter(filter);
}
-
-void SkNWayCanvas::beginCommentGroup(const char* description) {
- Iter iter(fList);
- while (iter.next()) {
- iter->beginCommentGroup(description);
- }
-}
-
-void SkNWayCanvas::addComment(const char* kywd, const char* value) {
- Iter iter(fList);
- while (iter.next()) {
- iter->addComment(kywd, value);
- }
-}
-
-void SkNWayCanvas::endCommentGroup() {
- Iter iter(fList);
- while (iter.next()) {
- iter->endCommentGroup();
- }
-}
« no previous file with comments | « src/utils/SkDumpCanvas.cpp ('k') | src/utils/debugger/SkDebugCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698