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

Unified Diff: Source/platform/graphics/LoggingCanvas.cpp

Issue 1151933002: Remove Skia comment API overrides (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/platform/graphics/LoggingCanvas.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/LoggingCanvas.cpp
diff --git a/Source/platform/graphics/LoggingCanvas.cpp b/Source/platform/graphics/LoggingCanvas.cpp
index 34152df39f105bf0b4fd57fa6a797f128ab0dddf..2d0fb74c9698a12be834c6af7b2162e02dc60629 100644
--- a/Source/platform/graphics/LoggingCanvas.cpp
+++ b/Source/platform/graphics/LoggingCanvas.cpp
@@ -679,30 +679,6 @@ void LoggingCanvas::onDrawVertices(VertexMode vmode, int vertexCount, const SkPo
this->SkCanvas::onDrawVertices(vmode, vertexCount, vertices, texs, colors, xmode, indices, indexCount, paint);
}
-void LoggingCanvas::beginCommentGroup(const char* description)
-{
- AutoLogger logger(this);
- RefPtr<JSONObject> params = logger.logItemWithParams("beginCommentGroup");
- params->setString("description", description);
- this->SkCanvas::beginCommentGroup(description);
-}
-
-void LoggingCanvas::addComment(const char* keyword, const char* value)
-{
- AutoLogger logger(this);
- RefPtr<JSONObject> params = logger.logItemWithParams("addComment");
- params->setString("key", keyword);
- params->setString("value", value);
- this->SkCanvas::addComment(keyword, value);
-}
-
-void LoggingCanvas::endCommentGroup()
-{
- AutoLogger logger(this);
- logger.logItem("endCommentGroup");
- this->SkCanvas::endCommentGroup();
-}
-
void LoggingCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint)
{
AutoLogger logger(this);
« no previous file with comments | « Source/platform/graphics/LoggingCanvas.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698