[webkit-reviews] review granted: [Bug 110599] Web Inspector: Native Memory Instrumentation: replace String with const char* in MemoryObjectInfo : [Attachment 189923] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 25 05:10:48 PST 2013


Yury Semikhatsky <yurys at chromium.org> has granted Ilya Tikhonovsky
<loislo at chromium.org>'s request for review:
Bug 110599: Web Inspector: Native Memory Instrumentation: replace String with
const char* in MemoryObjectInfo
https://bugs.webkit.org/show_bug.cgi?id=110599

Attachment 189923: Patch
https://bugs.webkit.org/attachment.cgi?id=189923&action=review

------- Additional Comments from Yury Semikhatsky <yurys at chromium.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=189923&action=review


> Source/WebCore/inspector/HeapGraphSerializer.cpp:217
> +    length = length < 256 ? length : 256;

if (length > 256)
    length = 256;


More information about the webkit-reviews mailing list