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

Unified Diff: cc/resources/float_clip_display_item.cc

Issue 895853003: Update from https://crrev.com/314320 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 | « cc/resources/float_clip_display_item.h ('k') | cc/resources/gpu_rasterizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/float_clip_display_item.cc
diff --git a/cc/resources/float_clip_display_item.cc b/cc/resources/float_clip_display_item.cc
index 259ccc88d7018a4ea86cd299276133277368d484..0cfe4635286da2fbe74773f96e9a3ef143ee0f2f 100644
--- a/cc/resources/float_clip_display_item.cc
+++ b/cc/resources/float_clip_display_item.cc
@@ -4,6 +4,8 @@
#include "cc/resources/float_clip_display_item.h"
+#include "base/strings/stringprintf.h"
+#include "base/trace_event/trace_event_argument.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "ui/gfx/skia_util.h"
@@ -34,6 +36,11 @@ size_t FloatClipDisplayItem::PictureMemoryUsage() const {
return sizeof(gfx::RectF);
}
+void FloatClipDisplayItem::AsValueInto(base::debug::TracedValue* array) const {
+ array->AppendString(base::StringPrintf("FloatClipDisplayItem rect: [%s]",
+ clip_rect_.ToString().c_str()));
+}
+
EndFloatClipDisplayItem::EndFloatClipDisplayItem() {
}
@@ -57,4 +64,9 @@ size_t EndFloatClipDisplayItem::PictureMemoryUsage() const {
return 0;
}
+void EndFloatClipDisplayItem::AsValueInto(
+ base::debug::TracedValue* array) const {
+ array->AppendString("EndFloatClipDisplayItem");
+}
+
} // namespace cc
« no previous file with comments | « cc/resources/float_clip_display_item.h ('k') | cc/resources/gpu_rasterizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698