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

Unified Diff: Source/core/css/invalidation/DescendantInvalidationSet.cpp

Issue 637383004: Fix crash from DescendantInvalidationSet::show(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | Source/core/css/invalidation/DescendantInvalidationSetTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/invalidation/DescendantInvalidationSet.cpp
diff --git a/Source/core/css/invalidation/DescendantInvalidationSet.cpp b/Source/core/css/invalidation/DescendantInvalidationSet.cpp
index db27ad75055987fab656bb842e77d8b86e0c698d..692d6bf1a0a6d39f154f0dc6152dcec918308ba4 100644
--- a/Source/core/css/invalidation/DescendantInvalidationSet.cpp
+++ b/Source/core/css/invalidation/DescendantInvalidationSet.cpp
@@ -265,7 +265,9 @@ void DescendantInvalidationSet::toTracedValue(TracedValue* value) const
void DescendantInvalidationSet::show() const
{
RefPtr<TracedValue> value = TracedValue::create();
+ value->beginArray("DescendantInvalidationSet");
toTracedValue(value.get());
+ value->endArray();
fprintf(stderr, "%s\n", value->asTraceFormat().ascii().data());
}
#endif // NDEBUG
« no previous file with comments | « no previous file | Source/core/css/invalidation/DescendantInvalidationSetTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698