[Webkit-unassigned] [Bug 193428] Implement PerformanceObserver.supportedEntryTypes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 14 21:03:52 PST 2019


https://bugs.webkit.org/show_bug.cgi?id=193428

--- Comment #9 from Joseph Pecoraro <joepeck at webkit.org> ---
Comment on attachment 359129
  --> https://bugs.webkit.org/attachment.cgi?id=359129
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=359129&action=review

r=me

> Source/WebCore/page/PerformanceObserver.cpp:123
> +        "resource"

Type inference should allow you to drop the explicit type here, and you can more efficiently construct the WTFStrings from literals with the `_s` suffix:

    return {
        // FIXME: <https://webkit.org/b/184363> Add support for Navigation Timing Level 2
        // "navigation"_s,
        "mark"_s,
        "measure"_s,
        "resource"_s
    };

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190115/67bef585/attachment.html>


More information about the webkit-unassigned mailing list