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

Unified Diff: src/core/SkPictureRecord.cpp

Issue 1761793003: Revert of move annotations to canvas virtual (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/core/SkPictureRecord.h ('k') | src/core/SkReadBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkPictureRecord.cpp
diff --git a/src/core/SkPictureRecord.cpp b/src/core/SkPictureRecord.cpp
index 2718ee999df0ea2d03e1c35ae3dbdc46d3fc5141..2822a1ac1643a2c0681418b79ae1ec75baf4c326 100644
--- a/src/core/SkPictureRecord.cpp
+++ b/src/core/SkPictureRecord.cpp
@@ -774,18 +774,6 @@
if (cull) {
fWriter.write(cull, sizeof(SkRect));
}
- this->validate(initialOffset, size);
-}
-
-void SkPictureRecord::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
- size_t keyLen = fWriter.WriteStringSize(key);
- size_t valueLen = fWriter.WriteDataSize(value);
- size_t size = 4 + sizeof(SkRect) + keyLen + valueLen;
-
- size_t initialOffset = this->addDraw(DRAW_ANNOTATION, &size);
- this->addRect(rect);
- fWriter.writeString(key);
- fWriter.writeData(value);
this->validate(initialOffset, size);
}
« no previous file with comments | « src/core/SkPictureRecord.h ('k') | src/core/SkReadBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698