Last active
January 18, 2018 05:07
-
-
Save irori/25d6cac337e0c47d749886f0c72635e9 to your computer and use it in GitHub Desktop.
pprof results of module loading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" | |
| "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <!-- Generated by graphviz version 2.38.0 (20140413.2041) | |
| --> | |
| <!-- Title: chrome Pages: 1 --> | |
| <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <script type="text/ecmascript"><![CDATA[/** | |
| * SVGPan library 1.2.2 | |
| * ====================== | |
| * | |
| * Given an unique existing element with id "viewport" (or when missing, the | |
| * first g-element), including the the library into any SVG adds the following | |
| * capabilities: | |
| * | |
| * - Mouse panning | |
| * - Mouse zooming (using the wheel) | |
| * - Object dragging | |
| * | |
| * You can configure the behaviour of the pan/zoom/drag with the variables | |
| * listed in the CONFIGURATION section of this file. | |
| * | |
| * Known issues: | |
| * | |
| * - Zooming (while panning) on Safari has still some issues | |
| * | |
| * Releases: | |
| * | |
| * 1.2.2, Tue Aug 30 17:21:56 CEST 2011, Andrea Leofreddi | |
| * - Fixed viewBox on root tag (#7) | |
| * - Improved zoom speed (#2) | |
| * | |
| * 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi | |
| * - Fixed a regression with mouse wheel (now working on Firefox 5) | |
| * - Working with viewBox attribute (#4) | |
| * - Added "use strict;" and fixed resulting warnings (#5) | |
| * - Added configuration variables, dragging is disabled by default (#3) | |
| * | |
| * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui | |
| * Fixed a bug with browser mouse handler interaction | |
| * | |
| * 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui | |
| * Updated the zoom code to support the mouse wheel on Safari/Chrome | |
| * | |
| * 1.0, Andrea Leofreddi | |
| * First release | |
| */ | |
| /** | |
| * @license | |
| * This code is licensed under the following BSD license: | |
| * | |
| * Copyright 2009-2010 Andrea Leofreddi <a.leofreddi@itcharm.com>. All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without modification, are | |
| * permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright notice, this list of | |
| * conditions and the following disclaimer. | |
| * | |
| * 2. Redistributions in binary form must reproduce the above copyright notice, this list | |
| * of conditions and the following disclaimer in the documentation and/or other materials | |
| * provided with the distribution. | |
| * | |
| * THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR | |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
| * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
| * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| * | |
| * The views and conclusions contained in the software and documentation are those of the | |
| * authors and should not be interpreted as representing official policies, either expressed | |
| * or implied, of Andrea Leofreddi. | |
| */ | |
| "use strict"; | |
| /// CONFIGURATION | |
| /// ====> | |
| var enablePan = 1; // 1 or 0: enable or disable panning (default enabled) | |
| var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled) | |
| var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled) | |
| var zoomScale = 0.4; // Zoom sensitivity | |
| /// <==== | |
| /// END OF CONFIGURATION | |
| var root = document.documentElement; | |
| var state = 'none', svgRoot = null, stateTarget, stateOrigin, stateTf; | |
| setupHandlers(root); | |
| /** | |
| * Register handlers | |
| */ | |
| function setupHandlers(root){ | |
| setAttributes(root, { | |
| "onmouseup" : "handleMouseUp(evt)", | |
| "onmousedown" : "handleMouseDown(evt)", | |
| "onmousemove" : "handleMouseMove(evt)", | |
| //"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element | |
| }); | |
| if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) | |
| window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari | |
| else | |
| window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others | |
| } | |
| /** | |
| * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable. | |
| */ | |
| function getRoot(root) { | |
| if(svgRoot == null) { | |
| var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r; | |
| while(t != root) { | |
| if(t.getAttribute("viewBox")) { | |
| setCTM(r, r.getCTM()); | |
| t.removeAttribute("viewBox"); | |
| } | |
| t = t.parentNode; | |
| } | |
| svgRoot = r; | |
| } | |
| return svgRoot; | |
| } | |
| /** | |
| * Instance an SVGPoint object with given event coordinates. | |
| */ | |
| function getEventPoint(evt) { | |
| var p = root.createSVGPoint(); | |
| p.x = evt.clientX; | |
| p.y = evt.clientY; | |
| return p; | |
| } | |
| /** | |
| * Sets the current transform matrix of an element. | |
| */ | |
| function setCTM(element, matrix) { | |
| var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; | |
| element.setAttribute("transform", s); | |
| } | |
| /** | |
| * Dumps a matrix to a string (useful for debug). | |
| */ | |
| function dumpMatrix(matrix) { | |
| var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]"; | |
| return s; | |
| } | |
| /** | |
| * Sets attributes of an element. | |
| */ | |
| function setAttributes(element, attributes){ | |
| for (var i in attributes) | |
| element.setAttributeNS(null, i, attributes[i]); | |
| } | |
| /** | |
| * Handle mouse wheel event. | |
| */ | |
| function handleMouseWheel(evt) { | |
| if(!enableZoom) | |
| return; | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var delta; | |
| if(evt.wheelDelta) | |
| delta = evt.wheelDelta / 360; // Chrome/Safari | |
| else | |
| delta = evt.detail / -9; // Mozilla | |
| var z = Math.pow(1 + zoomScale, delta); | |
| var g = getRoot(svgDoc); | |
| var p = getEventPoint(evt); | |
| p = p.matrixTransform(g.getCTM().inverse()); | |
| // Compute new scale matrix in current mouse position | |
| var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y); | |
| setCTM(g, g.getCTM().multiply(k)); | |
| if(typeof(stateTf) == "undefined") | |
| stateTf = g.getCTM().inverse(); | |
| stateTf = stateTf.multiply(k.inverse()); | |
| } | |
| /** | |
| * Handle mouse move event. | |
| */ | |
| function handleMouseMove(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if(state == 'pan' && enablePan) { | |
| // Pan mode | |
| var p = getEventPoint(evt).matrixTransform(stateTf); | |
| setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); | |
| } else if(state == 'drag' && enableDrag) { | |
| // Drag mode | |
| var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse()); | |
| setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM())); | |
| stateOrigin = p; | |
| } | |
| } | |
| /** | |
| * Handle click event. | |
| */ | |
| function handleMouseDown(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if( | |
| evt.target.tagName == "svg" | |
| || !enableDrag // Pan anyway when drag is disabled and the user clicked on an element | |
| ) { | |
| // Pan mode | |
| state = 'pan'; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } else { | |
| // Drag mode | |
| state = 'drag'; | |
| stateTarget = evt.target; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } | |
| } | |
| /** | |
| * Handle mouse button release event. | |
| */ | |
| function handleMouseUp(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| if(state == 'pan' || state == 'drag') { | |
| // Quit pan mode | |
| state = ''; | |
| } | |
| } | |
| ]]></script><g id="viewport" transform="scale(0.5,0.5) translate(0,0)"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 2769)"> | |
| <title>chrome</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-2769 1276.5,-2769 1276.5,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="134.5,-2607 134.5,-2757 546.5,-2757 546.5,-2607 134.5,-2607"/> | |
| </g> | |
| <!-- File: chrome --> | |
| <g id="node1" class="node"><title>File: chrome</title> | |
| <g id="a_node1"><a xlink:title="chrome"> | |
| <polygon fill="#f8f8f8" stroke="black" points="538.5,-2749 142.5,-2749 142.5,-2615 538.5,-2615 538.5,-2749"/> | |
| <text text-anchor="start" x="150.5" y="-2732.2" font-family="Times,serif" font-size="16.00">File: chrome</text> | |
| <text text-anchor="start" x="150.5" y="-2714.2" font-family="Times,serif" font-size="16.00">Type: cpu</text> | |
| <text text-anchor="start" x="150.5" y="-2696.2" font-family="Times,serif" font-size="16.00">Active filters:</text> | |
| <text text-anchor="start" x="150.5" y="-2678.2" font-family="Times,serif" font-size="16.00">   show=blink|content</text> | |
| <text text-anchor="start" x="150.5" y="-2660.2" font-family="Times,serif" font-size="16.00">Showing nodes accounting for 4.63s, 52.85% of 8.76s total</text> | |
| <text text-anchor="start" x="150.5" y="-2642.2" font-family="Times,serif" font-size="16.00">Dropped 311 nodes (cum <= 0.04s)</text> | |
| <text text-anchor="start" x="150.5" y="-2624.2" font-family="Times,serif" font-size="16.00">Showing top 80 nodes out of 110</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node1" class="node"><title>N1</title> | |
| <g id="a_node1"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (5.60s)"> | |
| <polygon fill="#edd8d5" stroke="#b21600" points="701,-2328 492,-2328 492,-2212 701,-2212 701,-2328"/> | |
| <text text-anchor="middle" x="596.5" y="-2311.2" font-family="Times,serif" font-size="16.00">blink</text> | |
| <text text-anchor="middle" x="596.5" y="-2293.2" font-family="Times,serif" font-size="16.00">scheduler</text> | |
| <text text-anchor="middle" x="596.5" y="-2275.2" font-family="Times,serif" font-size="16.00">TaskQueueManager</text> | |
| <text text-anchor="middle" x="596.5" y="-2257.2" font-family="Times,serif" font-size="16.00">ProcessTaskFromWorkQueue</text> | |
| <text text-anchor="middle" x="596.5" y="-2239.2" font-family="Times,serif" font-size="16.00">0.33s (3.77%)</text> | |
| <text text-anchor="middle" x="596.5" y="-2221.2" font-family="Times,serif" font-size="16.00">of 5.60s (63.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node5" class="node"><title>N5</title> | |
| <g id="a_node5"><a xlink:title="content::URLResponseBodyConsumer::OnReadable (1.69s)"> | |
| <polygon fill="#eddfd6" stroke="#b24906" points="687,-2018 506,-2018 506,-1935 687,-1935 687,-2018"/> | |
| <text text-anchor="middle" x="596.5" y="-2002.8" font-family="Times,serif" font-size="14.00">content</text> | |
| <text text-anchor="middle" x="596.5" y="-1987.8" font-family="Times,serif" font-size="14.00">URLResponseBodyConsumer</text> | |
| <text text-anchor="middle" x="596.5" y="-1972.8" font-family="Times,serif" font-size="14.00">OnReadable</text> | |
| <text text-anchor="middle" x="596.5" y="-1957.8" font-family="Times,serif" font-size="14.00">0.20s (2.28%)</text> | |
| <text text-anchor="middle" x="596.5" y="-1942.8" font-family="Times,serif" font-size="14.00">of 1.69s (19.29%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N5 --> | |
| <g id="edge10" class="edge"><title>N1->N5</title> | |
| <g id="a_edge10"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> content::URLResponseBodyConsumer::OnReadable (1.64s)"> | |
| <path fill="none" stroke="#b24d0b" d="M596.5,-2211.76C596.5,-2158.4 596.5,-2079.56 596.5,-2028.36"/> | |
| <polygon fill="#b24d0b" stroke="#b24d0b" points="600,-2028.19 596.5,-2018.19 593,-2028.19 600,-2028.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> content::URLResponseBodyConsumer::OnReadable (1.64s)"> | |
| <text text-anchor="middle" x="613.5" y="-2111.3" font-family="Times,serif" font-size="14.00"> 1.64s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6 --> | |
| <g id="node6" class="node"><title>N6</title> | |
| <g id="a_node6"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept (1.36s)"> | |
| <polygon fill="#ede2da" stroke="#b26327" points="560.5,-2161 372.5,-2161 372.5,-2069 560.5,-2069 560.5,-2161"/> | |
| <text text-anchor="middle" x="466.5" y="-2146.6" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="466.5" y="-2132.6" font-family="Times,serif" font-size="13.00">mojom</text> | |
| <text text-anchor="middle" x="466.5" y="-2118.6" font-family="Times,serif" font-size="13.00">URLLoaderClientStubDispatch</text> | |
| <text text-anchor="middle" x="466.5" y="-2104.6" font-family="Times,serif" font-size="13.00">Accept</text> | |
| <text text-anchor="middle" x="466.5" y="-2090.6" font-family="Times,serif" font-size="13.00">0.11s (1.26%)</text> | |
| <text text-anchor="middle" x="466.5" y="-2076.6" font-family="Times,serif" font-size="13.00">of 1.36s (15.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N6 --> | |
| <g id="edge20" class="edge"><title>N1->N6</title> | |
| <g id="a_edge20"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> content::mojom::URLLoaderClientStubDispatch::Accept (1.29s)"> | |
| <path fill="none" stroke="#b2682f" d="M547.723,-2211.59C535.918,-2197.7 523.351,-2182.91 511.719,-2169.22"/> | |
| <polygon fill="#b2682f" stroke="#b2682f" points="514.133,-2166.65 504.99,-2161.3 508.798,-2171.19 514.133,-2166.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge20-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> content::mojom::URLLoaderClientStubDispatch::Accept (1.29s)"> | |
| <text text-anchor="middle" x="548.5" y="-2182.8" font-family="Times,serif" font-size="14.00"> 1.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node31" class="node"><title>N31</title> | |
| <g id="a_node31"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::NotifyDidProcessTask (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="1113,-2158 988,-2158 988,-2072 1113,-2072 1113,-2158"/> | |
| <text text-anchor="middle" x="1050.5" y="-2144.4" font-family="Times,serif" font-size="12.00">blink</text> | |
| <text text-anchor="middle" x="1050.5" y="-2131.4" font-family="Times,serif" font-size="12.00">scheduler</text> | |
| <text text-anchor="middle" x="1050.5" y="-2118.4" font-family="Times,serif" font-size="12.00">internal</text> | |
| <text text-anchor="middle" x="1050.5" y="-2105.4" font-family="Times,serif" font-size="12.00">TaskQueueImpl</text> | |
| <text text-anchor="middle" x="1050.5" y="-2092.4" font-family="Times,serif" font-size="12.00">NotifyDidProcessTask</text> | |
| <text text-anchor="middle" x="1050.5" y="-2079.4" font-family="Times,serif" font-size="12.00">0.07s (0.8%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N31 --> | |
| <g id="edge70" class="edge"><title>N1->N31</title> | |
| <g id="a_edge70"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> blink::scheduler::internal::TaskQueueImpl::NotifyDidProcessTask (0.07s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M701.019,-2247.92C779.408,-2230.11 888.269,-2201.07 978.5,-2161 978.597,-2160.96 978.694,-2160.91 978.791,-2160.87"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="980.319,-2164.02 987.84,-2156.56 977.307,-2157.7 980.319,-2164.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge70-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> blink::scheduler::internal::TaskQueueImpl::NotifyDidProcessTask (0.07s)"> | |
| <text text-anchor="middle" x="946.5" y="-2182.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node34" class="node"><title>N34</title> | |
| <g id="a_node34"><a xlink:title="blink::scheduler::WebSchedulerImpl::RunIdleTask (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="969.5,-2155 867.5,-2155 867.5,-2075 969.5,-2075 969.5,-2155"/> | |
| <text text-anchor="middle" x="918.5" y="-2142.2" font-family="Times,serif" font-size="11.00">blink</text> | |
| <text text-anchor="middle" x="918.5" y="-2130.2" font-family="Times,serif" font-size="11.00">scheduler</text> | |
| <text text-anchor="middle" x="918.5" y="-2118.2" font-family="Times,serif" font-size="11.00">WebSchedulerImpl</text> | |
| <text text-anchor="middle" x="918.5" y="-2106.2" font-family="Times,serif" font-size="11.00">RunIdleTask</text> | |
| <text text-anchor="middle" x="918.5" y="-2094.2" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text> | |
| <text text-anchor="middle" x="918.5" y="-2082.2" font-family="Times,serif" font-size="11.00">of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N34 --> | |
| <g id="edge60" class="edge"><title>N1->N34</title> | |
| <g id="a_edge60"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue ... blink::scheduler::WebSchedulerImpl::RunIdleTask (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M701.17,-2232.4C749.982,-2213.66 808.071,-2188.91 857.5,-2161 857.801,-2160.83 858.102,-2160.66 858.403,-2160.49"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="860.417,-2163.36 867.165,-2155.19 856.796,-2157.37 860.417,-2163.36"/> | |
| </a> | |
| </g> | |
| <g id="a_edge60-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue ... blink::scheduler::WebSchedulerImpl::RunIdleTask (0.11s)"> | |
| <text text-anchor="middle" x="841.5" y="-2182.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49 --> | |
| <g id="node49" class="node"><title>N49</title> | |
| <g id="a_node49"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::OnTaskCompleted (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="1248.5,-2157.5 1154.5,-2157.5 1154.5,-2072.5 1248.5,-2072.5 1248.5,-2157.5"/> | |
| <text text-anchor="middle" x="1201.5" y="-2145.5" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="1201.5" y="-2134.5" font-family="Times,serif" font-size="10.00">scheduler</text> | |
| <text text-anchor="middle" x="1201.5" y="-2123.5" font-family="Times,serif" font-size="10.00">internal</text> | |
| <text text-anchor="middle" x="1201.5" y="-2112.5" font-family="Times,serif" font-size="10.00">TaskQueueImpl</text> | |
| <text text-anchor="middle" x="1201.5" y="-2101.5" font-family="Times,serif" font-size="10.00">OnTaskCompleted</text> | |
| <text text-anchor="middle" x="1201.5" y="-2090.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1201.5" y="-2079.5" font-family="Times,serif" font-size="10.00">of 0.08s (0.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N49 --> | |
| <g id="edge66" class="edge"><title>N1->N49</title> | |
| <g id="a_edge66"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> blink::scheduler::internal::TaskQueueImpl::OnTaskCompleted (0.08s)"> | |
| <path fill="none" stroke="#b2b0aa" d="M701.093,-2257.42C809.055,-2243.2 981.052,-2214.14 1121.5,-2161 1129.43,-2158 1137.51,-2154.3 1145.35,-2150.33"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="1147.19,-2153.32 1154.41,-2145.57 1143.93,-2147.12 1147.19,-2153.32"/> | |
| </a> | |
| </g> | |
| <g id="a_edge66-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> blink::scheduler::internal::TaskQueueImpl::OnTaskCompleted (0.08s)"> | |
| <text text-anchor="middle" x="1084.5" y="-2182.8" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69 --> | |
| <g id="node69" class="node"><title>N69</title> | |
| <g id="a_node69"><a xlink:title="blink::ModuleTreeLinker::NotifyModuleLoadFinished (1.56s)"> | |
| <polygon fill="#ede0d8" stroke="#b25313" points="754,-2137 649,-2137 649,-2093 754,-2093 754,-2137"/> | |
| <text text-anchor="middle" x="701.5" y="-2126.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="701.5" y="-2117.6" font-family="Times,serif" font-size="8.00">ModuleTreeLinker</text> | |
| <text text-anchor="middle" x="701.5" y="-2108.6" font-family="Times,serif" font-size="8.00">NotifyModuleLoadFinished</text> | |
| <text text-anchor="middle" x="701.5" y="-2099.6" font-family="Times,serif" font-size="8.00">0 of 1.56s (17.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N69 --> | |
| <g id="edge13" class="edge"><title>N1->N69</title> | |
| <g id="a_edge13"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> blink::ModuleTreeLinker::NotifyModuleLoadFinished (1.56s)"> | |
| <path fill="none" stroke="#b25313" d="M635.897,-2211.59C651.269,-2189.19 668.242,-2164.46 681.073,-2145.77"/> | |
| <polygon fill="#b25313" stroke="#b25313" points="684.061,-2147.6 686.834,-2137.37 678.289,-2143.64 684.061,-2147.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue -> blink::ModuleTreeLinker::NotifyModuleLoadFinished (1.56s)"> | |
| <text text-anchor="middle" x="672.5" y="-2182.8" font-family="Times,serif" font-size="14.00"> 1.56s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78 --> | |
| <g id="node78" class="node"><title>N78</title> | |
| <g id="a_node78"><a xlink:title="blink::ScriptLoader::Execute (0.33s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="849,-2137 772,-2137 772,-2093 849,-2093 849,-2137"/> | |
| <text text-anchor="middle" x="810.5" y="-2126.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="810.5" y="-2117.6" font-family="Times,serif" font-size="8.00">ScriptLoader</text> | |
| <text text-anchor="middle" x="810.5" y="-2108.6" font-family="Times,serif" font-size="8.00">Execute</text> | |
| <text text-anchor="middle" x="810.5" y="-2099.6" font-family="Times,serif" font-size="8.00">0 of 0.33s (3.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N78 --> | |
| <g id="edge38" class="edge"><title>N1->N78</title> | |
| <g id="a_edge38"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue ... blink::ScriptLoader::Execute (0.33s)"> | |
| <path fill="none" stroke="#b2a590" stroke-dasharray="1,5" d="M690.7,-2211.82C714.699,-2196.15 740.043,-2178.61 762.5,-2161 769.073,-2155.85 775.808,-2149.96 782.075,-2144.19"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="784.832,-2146.4 789.716,-2137 780.035,-2141.31 784.832,-2146.4"/> | |
| </a> | |
| </g> | |
| <g id="a_edge38-label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue ... blink::ScriptLoader::Execute (0.33s)"> | |
| <text text-anchor="middle" x="754.5" y="-2182.8" font-family="Times,serif" font-size="14.00"> 0.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2 --> | |
| <g id="node2" class="node"><title>N2</title> | |
| <g id="a_node2"><a xlink:title="content::ContentMain (5.52s)"> | |
| <polygon fill="#edd8d5" stroke="#b21700" points="636.5,-2700 556.5,-2700 556.5,-2664 636.5,-2664 636.5,-2700"/> | |
| <text text-anchor="middle" x="596.5" y="-2689.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="596.5" y="-2680.1" font-family="Times,serif" font-size="8.00">ContentMain</text> | |
| <text text-anchor="middle" x="596.5" y="-2671.1" font-family="Times,serif" font-size="8.00">0 of 5.52s (63.01%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16 --> | |
| <g id="node16" class="node"><title>N16</title> | |
| <g id="a_node16"><a xlink:title="content::RendererMain (5.62s)"> | |
| <polygon fill="#edd8d5" stroke="#b21600" points="647.5,-2564 545.5,-2564 545.5,-2504 647.5,-2504 647.5,-2564"/> | |
| <text text-anchor="middle" x="596.5" y="-2550.4" font-family="Times,serif" font-size="12.00">content</text> | |
| <text text-anchor="middle" x="596.5" y="-2537.4" font-family="Times,serif" font-size="12.00">RendererMain</text> | |
| <text text-anchor="middle" x="596.5" y="-2524.4" font-family="Times,serif" font-size="12.00">0.07s (0.8%)</text> | |
| <text text-anchor="middle" x="596.5" y="-2511.4" font-family="Times,serif" font-size="12.00">of 5.62s (64.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N16 --> | |
| <g id="edge3" class="edge"><title>N2->N16</title> | |
| <g id="a_edge3"><a xlink:title="content::ContentMain ... content::RendererMain (5.52s)"> | |
| <path fill="none" stroke="#b21700" stroke-width="4" stroke-dasharray="1,5" d="M596.5,-2663.97C596.5,-2642.19 596.5,-2603.82 596.5,-2574.57"/> | |
| <polygon fill="#b21700" stroke="#b21700" stroke-width="4" points="600,-2574.26 596.5,-2564.26 593,-2574.26 600,-2574.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="content::ContentMain ... content::RendererMain (5.52s)"> | |
| <text text-anchor="middle" x="613.5" y="-2585.8" font-family="Times,serif" font-size="14.00"> 5.52s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node3" class="node"><title>N3</title> | |
| <g id="a_node3"><a xlink:title="blink::V8ScriptRunner::CompileModule (1.56s)"> | |
| <polygon fill="#ede0d8" stroke="#b25313" points="435,-785 244,-785 244,-647 435,-647 435,-785"/> | |
| <text text-anchor="middle" x="339.5" y="-761.8" font-family="Times,serif" font-size="24.00">blink</text> | |
| <text text-anchor="middle" x="339.5" y="-735.8" font-family="Times,serif" font-size="24.00">V8ScriptRunner</text> | |
| <text text-anchor="middle" x="339.5" y="-709.8" font-family="Times,serif" font-size="24.00">CompileModule</text> | |
| <text text-anchor="middle" x="339.5" y="-683.8" font-family="Times,serif" font-size="24.00">1.53s (17.47%)</text> | |
| <text text-anchor="middle" x="339.5" y="-657.8" font-family="Times,serif" font-size="24.00">of 1.56s (17.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node4" class="node"><title>N4</title> | |
| <g id="a_node4"><a xlink:title="content::ResourceDispatcher::OnRequestComplete (2.11s)"> | |
| <polygon fill="#edddd5" stroke="#b23e00" points="461,-1874.5 378,-1874.5 378,-1830.5 461,-1830.5 461,-1874.5"/> | |
| <text text-anchor="middle" x="419.5" y="-1864.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="419.5" y="-1855.1" font-family="Times,serif" font-size="8.00">ResourceDispatcher</text> | |
| <text text-anchor="middle" x="419.5" y="-1846.1" font-family="Times,serif" font-size="8.00">OnRequestComplete</text> | |
| <text text-anchor="middle" x="419.5" y="-1837.1" font-family="Times,serif" font-size="8.00">0 of 2.11s (24.09%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node17" class="node"><title>N17</title> | |
| <g id="a_node17"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)"> | |
| <polygon fill="#edddd5" stroke="#b23e00" points="462.5,-1765 376.5,-1765 376.5,-1712 462.5,-1712 462.5,-1765"/> | |
| <text text-anchor="middle" x="419.5" y="-1754.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="419.5" y="-1745.6" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="419.5" y="-1736.6" font-family="Times,serif" font-size="8.00">Context</text> | |
| <text text-anchor="middle" x="419.5" y="-1727.6" font-family="Times,serif" font-size="8.00">OnCompletedRequest</text> | |
| <text text-anchor="middle" x="419.5" y="-1718.6" font-family="Times,serif" font-size="8.00">0 of 2.11s (24.09%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N17 --> | |
| <g id="edge4" class="edge"><title>N4->N17</title> | |
| <g id="a_edge4"><a xlink:title="content::ResourceDispatcher::OnRequestComplete -> content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)"> | |
| <path fill="none" stroke="#b23e00" stroke-width="2" d="M419.5,-1830.43C419.5,-1814.97 419.5,-1793.58 419.5,-1775.43"/> | |
| <polygon fill="#b23e00" stroke="#b23e00" stroke-width="2" points="423,-1775.19 419.5,-1765.19 416,-1775.19 423,-1775.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="content::ResourceDispatcher::OnRequestComplete -> content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)"> | |
| <text text-anchor="middle" x="436.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 2.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N4 --> | |
| <g id="edge16" class="edge"><title>N5->N4</title> | |
| <g id="a_edge16"><a xlink:title="content::URLResponseBodyConsumer::OnReadable -> content::ResourceDispatcher::OnRequestComplete (1.36s)"> | |
| <path fill="none" stroke="#b26327" d="M537.562,-1934.88C511.701,-1917.05 482.037,-1896.6 458.912,-1880.67"/> | |
| <polygon fill="#b26327" stroke="#b26327" points="460.611,-1877.59 450.391,-1874.79 456.638,-1883.35 460.611,-1877.59"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="content::URLResponseBodyConsumer::OnReadable -> content::ResourceDispatcher::OnRequestComplete (1.36s)"> | |
| <text text-anchor="middle" x="525.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 1.36s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75 --> | |
| <g id="node75" class="node"><title>N75</title> | |
| <g id="a_node75"><a xlink:title="blink::ResourceLoader::DidReceiveData (0.10s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="635,-1874.5 558,-1874.5 558,-1830.5 635,-1830.5 635,-1874.5"/> | |
| <text text-anchor="middle" x="596.5" y="-1864.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="596.5" y="-1855.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="596.5" y="-1846.1" font-family="Times,serif" font-size="8.00">DidReceiveData</text> | |
| <text text-anchor="middle" x="596.5" y="-1837.1" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N75 --> | |
| <g id="edge62" class="edge"><title>N5->N75</title> | |
| <g id="a_edge62"><a xlink:title="content::URLResponseBodyConsumer::OnReadable ... blink::ResourceLoader::DidReceiveData (0.10s)"> | |
| <path fill="none" stroke="#b2afa8" stroke-dasharray="1,5" d="M596.5,-1934.88C596.5,-1918.7 596.5,-1900.36 596.5,-1885.2"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="600,-1884.79 596.5,-1874.79 593,-1884.79 600,-1884.79"/> | |
| </a> | |
| </g> | |
| <g id="a_edge62-label"><a xlink:title="content::URLResponseBodyConsumer::OnReadable ... blink::ResourceLoader::DidReceiveData (0.10s)"> | |
| <text text-anchor="middle" x="613.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N5 --> | |
| <g id="edge81" class="edge"><title>N6->N5</title> | |
| <g id="a_edge81"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::URLResponseBodyConsumer::OnReadable (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M509.427,-2068.93C522.531,-2055.17 536.994,-2039.98 550.305,-2026"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="553.204,-2028.04 557.566,-2018.38 548.135,-2023.21 553.204,-2028.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge81-label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::URLResponseBodyConsumer::OnReadable (0.03s)"> | |
| <text text-anchor="middle" x="556.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node13" class="node"><title>N13</title> | |
| <g id="a_node13"><a xlink:title="content::ThrottlingURLLoader::OnComplete (0.90s)"> | |
| <polygon fill="#ede6e0" stroke="#b28456" points="488,-2015.5 351,-2015.5 351,-1937.5 488,-1937.5 488,-2015.5"/> | |
| <text text-anchor="middle" x="419.5" y="-2001.1" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="419.5" y="-1987.1" font-family="Times,serif" font-size="13.00">ThrottlingURLLoader</text> | |
| <text text-anchor="middle" x="419.5" y="-1973.1" font-family="Times,serif" font-size="13.00">OnComplete</text> | |
| <text text-anchor="middle" x="419.5" y="-1959.1" font-family="Times,serif" font-size="13.00">0.14s (1.60%)</text> | |
| <text text-anchor="middle" x="419.5" y="-1945.1" font-family="Times,serif" font-size="13.00">of 0.90s (10.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N13 --> | |
| <g id="edge25" class="edge"><title>N6->N13</title> | |
| <g id="a_edge25"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept -> content::ThrottlingURLLoader::OnComplete (0.90s)"> | |
| <path fill="none" stroke="#b28456" d="M450.98,-2068.93C446.157,-2054.92 440.825,-2039.43 435.942,-2025.25"/> | |
| <polygon fill="#b28456" stroke="#b28456" points="439.209,-2023.99 432.644,-2015.67 432.591,-2026.27 439.209,-2023.99"/> | |
| </a> | |
| </g> | |
| <g id="a_edge25-label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept -> content::ThrottlingURLLoader::OnComplete (0.90s)"> | |
| <text text-anchor="middle" x="461.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 0.90s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node23" class="node"><title>N23</title> | |
| <g id="a_node23"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse (0.28s)"> | |
| <polygon fill="#edebe9" stroke="#b2a895" points="333,-2013.5 226,-2013.5 226,-1939.5 333,-1939.5 333,-2013.5"/> | |
| <text text-anchor="middle" x="279.5" y="-2001.5" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="279.5" y="-1990.5" font-family="Times,serif" font-size="10.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="279.5" y="-1979.5" font-family="Times,serif" font-size="10.00">Context</text> | |
| <text text-anchor="middle" x="279.5" y="-1968.5" font-family="Times,serif" font-size="10.00">OnReceivedResponse</text> | |
| <text text-anchor="middle" x="279.5" y="-1957.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="279.5" y="-1946.5" font-family="Times,serif" font-size="10.00">of 0.28s (3.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N23 --> | |
| <g id="edge45" class="edge"><title>N6->N23</title> | |
| <g id="a_edge45"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::WebURLLoaderImpl::Context::OnReceivedResponse (0.28s)"> | |
| <path fill="none" stroke="#b2a895" stroke-dasharray="1,5" d="M404.751,-2068.93C383.056,-2053.09 358.773,-2035.37 337.405,-2019.77"/> | |
| <polygon fill="#b2a895" stroke="#b2a895" points="339.204,-2016.75 329.063,-2013.68 335.077,-2022.4 339.204,-2016.75"/> | |
| </a> | |
| </g> | |
| <g id="a_edge45-label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept ... content::WebURLLoaderImpl::Context::OnReceivedResponse (0.28s)"> | |
| <text text-anchor="middle" x="396.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 0.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node7" class="node"><title>N7</title> | |
| <g id="a_node7"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants (1.56s)"> | |
| <polygon fill="#ede0d8" stroke="#b25313" points="785.5,-1998.5 705.5,-1998.5 705.5,-1954.5 785.5,-1954.5 785.5,-1998.5"/> | |
| <text text-anchor="middle" x="745.5" y="-1988.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="745.5" y="-1979.1" font-family="Times,serif" font-size="8.00">ModuleTreeLinker</text> | |
| <text text-anchor="middle" x="745.5" y="-1970.1" font-family="Times,serif" font-size="8.00">FetchDescendants</text> | |
| <text text-anchor="middle" x="745.5" y="-1961.1" font-family="Times,serif" font-size="8.00">0 of 1.56s (17.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node19" class="node"><title>N19</title> | |
| <g id="a_node19"><a xlink:title="blink::Modulator::ResolveModuleSpecifier (0.29s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="818.5,-1020.5 722.5,-1020.5 722.5,-976.5 818.5,-976.5 818.5,-1020.5"/> | |
| <text text-anchor="middle" x="770.5" y="-1010.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="770.5" y="-1001.1" font-family="Times,serif" font-size="8.00">Modulator</text> | |
| <text text-anchor="middle" x="770.5" y="-992.1" font-family="Times,serif" font-size="8.00">ResolveModuleSpecifier</text> | |
| <text text-anchor="middle" x="770.5" y="-983.1" font-family="Times,serif" font-size="8.00">0 of 0.29s (3.31%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N19 --> | |
| <g id="edge64" class="edge"><title>N7->N19</title> | |
| <g id="a_edge64"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::Modulator::ResolveModuleSpecifier (0.09s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M735.848,-1954.4C725.796,-1930.46 711.5,-1890 711.5,-1853.5 711.5,-1853.5 711.5,-1853.5 711.5,-1680.5 711.5,-1515.22 771.5,-1478.78 771.5,-1313.5 771.5,-1313.5 771.5,-1313.5 771.5,-1111.5 771.5,-1084.26 771.201,-1053.3 770.929,-1030.84"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="774.426,-1030.51 770.8,-1020.55 767.426,-1030.6 774.426,-1030.51"/> | |
| </a> | |
| </g> | |
| <g id="a_edge64-label"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::Modulator::ResolveModuleSpecifier (0.09s)"> | |
| <text text-anchor="middle" x="765.5" y="-1504.3" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node27" class="node"><title>N27</title> | |
| <g id="a_node27"><a xlink:title="blink::ModuleMap::FetchSingleModuleScript (1.31s)"> | |
| <polygon fill="#ede3db" stroke="#b2672d" points="957.5,-1884 835.5,-1884 835.5,-1821 957.5,-1821 957.5,-1884"/> | |
| <text text-anchor="middle" x="896.5" y="-1872" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="896.5" y="-1861" font-family="Times,serif" font-size="10.00">ModuleMap</text> | |
| <text text-anchor="middle" x="896.5" y="-1850" font-family="Times,serif" font-size="10.00">FetchSingleModuleScript</text> | |
| <text text-anchor="middle" x="896.5" y="-1839" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="896.5" y="-1828" font-family="Times,serif" font-size="10.00">of 1.31s (14.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N27 --> | |
| <g id="edge17" class="edge"><title>N7->N27</title> | |
| <g id="a_edge17"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::ModuleMap::FetchSingleModuleScript (1.30s)"> | |
| <path fill="none" stroke="#b2672e" d="M758.739,-1954.18C769.375,-1938.32 785.473,-1916.93 803.5,-1902 810.503,-1896.2 818.313,-1890.82 826.348,-1885.91"/> | |
| <polygon fill="#b2672e" stroke="#b2672e" points="828.264,-1888.84 835.128,-1880.77 824.73,-1882.8 828.264,-1888.84"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::ModuleMap::FetchSingleModuleScript (1.30s)"> | |
| <text text-anchor="middle" x="820.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 1.30s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37 --> | |
| <g id="node37" class="node"><title>N37</title> | |
| <g id="a_node37"><a xlink:title="blink::ScriptModule::~ScriptModule (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1154,-1880.5 1071,-1880.5 1071,-1824.5 1154,-1824.5 1154,-1880.5"/> | |
| <text text-anchor="middle" x="1112.5" y="-1867.7" font-family="Times,serif" font-size="11.00">blink</text> | |
| <text text-anchor="middle" x="1112.5" y="-1855.7" font-family="Times,serif" font-size="11.00">ScriptModule</text> | |
| <text text-anchor="middle" x="1112.5" y="-1843.7" font-family="Times,serif" font-size="11.00">~ScriptModule</text> | |
| <text text-anchor="middle" x="1112.5" y="-1831.7" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N37 --> | |
| <g id="edge80" class="edge"><title>N7->N37</title> | |
| <g id="a_edge80"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants ... blink::ScriptModule::~ScriptModule (0.03s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M778.919,-1954.31C811.658,-1933.73 857.986,-1905.13 867.5,-1902 949.768,-1874.98 979.188,-1910.89 1061.5,-1884 1061.6,-1883.97 1061.7,-1883.94 1061.79,-1883.9"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="1062.87,-1887.24 1070.9,-1880.33 1060.31,-1880.73 1062.87,-1887.24"/> | |
| </a> | |
| </g> | |
| <g id="a_edge80-label"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants ... blink::ScriptModule::~ScriptModule (0.03s)"> | |
| <text text-anchor="middle" x="884.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68 --> | |
| <g id="node68" class="node"><title>N68</title> | |
| <g id="a_node68"><a xlink:title="blink::ModuleTreeLinker::Instantiate (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="817.5,-1874.5 739.5,-1874.5 739.5,-1830.5 817.5,-1830.5 817.5,-1874.5"/> | |
| <text text-anchor="middle" x="778.5" y="-1864.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="778.5" y="-1855.1" font-family="Times,serif" font-size="8.00">ModuleTreeLinker</text> | |
| <text text-anchor="middle" x="778.5" y="-1846.1" font-family="Times,serif" font-size="8.00">Instantiate</text> | |
| <text text-anchor="middle" x="778.5" y="-1837.1" font-family="Times,serif" font-size="8.00">0 of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N68 --> | |
| <g id="edge58" class="edge"><title>N7->N68</title> | |
| <g id="a_edge58"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::ModuleTreeLinker::Instantiate (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" d="M742.694,-1954.42C741.441,-1939.46 741.247,-1919.08 746.5,-1902 748.446,-1895.67 751.498,-1889.4 754.96,-1883.57"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="758.123,-1885.13 760.638,-1874.84 752.253,-1881.32 758.123,-1885.13"/> | |
| </a> | |
| </g> | |
| <g id="a_edge58-label"><a xlink:title="blink::ModuleTreeLinker::FetchDescendants -> blink::ModuleTreeLinker::Instantiate (0.11s)"> | |
| <text text-anchor="middle" x="763.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8 --> | |
| <g id="node8" class="node"><title>N8</title> | |
| <g id="a_node8"><a xlink:title="blink::ResourceFetcher::RequestResource (1.29s)"> | |
| <polygon fill="#ede3db" stroke="#b2682f" points="936.5,-1402.5 856.5,-1402.5 856.5,-1358.5 936.5,-1358.5 936.5,-1402.5"/> | |
| <text text-anchor="middle" x="896.5" y="-1392.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="896.5" y="-1383.1" font-family="Times,serif" font-size="8.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="896.5" y="-1374.1" font-family="Times,serif" font-size="8.00">RequestResource</text> | |
| <text text-anchor="middle" x="896.5" y="-1365.1" font-family="Times,serif" font-size="8.00">0 of 1.29s (14.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51 --> | |
| <g id="node51" class="node"><title>N51</title> | |
| <g id="a_node51"><a xlink:title="blink::ResourceFetcher::PrepareRequest (0.17s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="915,-1263 838,-1263 838,-1219 915,-1219 915,-1263"/> | |
| <text text-anchor="middle" x="876.5" y="-1252.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="876.5" y="-1243.6" font-family="Times,serif" font-size="8.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="876.5" y="-1234.6" font-family="Times,serif" font-size="8.00">PrepareRequest</text> | |
| <text text-anchor="middle" x="876.5" y="-1225.6" font-family="Times,serif" font-size="8.00">0 of 0.17s (1.94%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N51 --> | |
| <g id="edge47" class="edge"><title>N8->N51</title> | |
| <g id="a_edge47"><a xlink:title="blink::ResourceFetcher::RequestResource -> blink::ResourceFetcher::PrepareRequest (0.17s)"> | |
| <path fill="none" stroke="#b2ada1" d="M893.419,-1358.32C890.125,-1335.67 884.868,-1299.53 881.087,-1273.54"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="884.521,-1272.83 879.618,-1263.43 877.594,-1273.83 884.521,-1272.83"/> | |
| </a> | |
| </g> | |
| <g id="a_edge47-label"><a xlink:title="blink::ResourceFetcher::RequestResource -> blink::ResourceFetcher::PrepareRequest (0.17s)"> | |
| <text text-anchor="middle" x="905.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 0.17s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56 --> | |
| <g id="node56" class="node"><title>N56</title> | |
| <g id="a_node56"><a xlink:title="blink::ResourceFetcher::CreateResourceForLoading (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1039.5,-1263 933.5,-1263 933.5,-1219 1039.5,-1219 1039.5,-1263"/> | |
| <text text-anchor="middle" x="986.5" y="-1252.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="986.5" y="-1243.6" font-family="Times,serif" font-size="8.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="986.5" y="-1234.6" font-family="Times,serif" font-size="8.00">CreateResourceForLoading</text> | |
| <text text-anchor="middle" x="986.5" y="-1225.6" font-family="Times,serif" font-size="8.00">0 of 0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N56 --> | |
| <g id="edge78" class="edge"><title>N8->N56</title> | |
| <g id="a_edge78"><a xlink:title="blink::ResourceFetcher::RequestResource -> blink::ResourceFetcher::CreateResourceForLoading (0.04s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M910.365,-1358.32C925.516,-1335.17 949.902,-1297.91 966.982,-1271.82"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="969.923,-1273.72 972.471,-1263.43 964.066,-1269.88 969.923,-1273.72"/> | |
| </a> | |
| </g> | |
| <g id="a_edge78-label"><a xlink:title="blink::ResourceFetcher::RequestResource -> blink::ResourceFetcher::CreateResourceForLoading (0.04s)"> | |
| <text text-anchor="middle" x="961.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71 --> | |
| <g id="node71" class="node"><title>N71</title> | |
| <g id="a_node71"><a xlink:title="blink::ResourceFetcher::StartLoad (1.07s)"> | |
| <polygon fill="#ede5de" stroke="#b27845" points="1137.5,-1263 1057.5,-1263 1057.5,-1219 1137.5,-1219 1137.5,-1263"/> | |
| <text text-anchor="middle" x="1097.5" y="-1252.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1097.5" y="-1243.6" font-family="Times,serif" font-size="8.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="1097.5" y="-1234.6" font-family="Times,serif" font-size="8.00">StartLoad</text> | |
| <text text-anchor="middle" x="1097.5" y="-1225.6" font-family="Times,serif" font-size="8.00">0 of 1.07s (12.21%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N71 --> | |
| <g id="edge23" class="edge"><title>N8->N71</title> | |
| <g id="a_edge23"><a xlink:title="blink::ResourceFetcher::RequestResource -> blink::ResourceFetcher::StartLoad (1.07s)"> | |
| <path fill="none" stroke="#b27845" d="M918.997,-1358.41C927.022,-1351.45 936.348,-1343.97 945.5,-1338 960.819,-1328.01 966.099,-1328.09 982.5,-1320 1011.91,-1305.49 1021.49,-1305.61 1048.5,-1287 1055.75,-1282.01 1063.02,-1276 1069.66,-1270.03"/> | |
| <polygon fill="#b27845" stroke="#b27845" points="1072.18,-1272.46 1077.13,-1263.09 1067.42,-1267.33 1072.18,-1272.46"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="blink::ResourceFetcher::RequestResource -> blink::ResourceFetcher::StartLoad (1.07s)"> | |
| <text text-anchor="middle" x="1033.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 1.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9 --> | |
| <g id="node9" class="node"><title>N9</title> | |
| <g id="a_node9"><a xlink:title="blink::ResourceLoader::Start (1.05s)"> | |
| <polygon fill="#ede5de" stroke="#b27947" points="1137.5,-1134.5 1057.5,-1134.5 1057.5,-1090.5 1137.5,-1090.5 1137.5,-1134.5"/> | |
| <text text-anchor="middle" x="1097.5" y="-1124.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1097.5" y="-1115.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1097.5" y="-1106.1" font-family="Times,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="1097.5" y="-1097.1" font-family="Times,serif" font-size="8.00">0 of 1.05s (11.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59 --> | |
| <g id="node59" class="node"><title>N59</title> | |
| <g id="a_node59"><a xlink:title="blink::FrameFetchContext::CreateURLLoader (0.38s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38b" points="1075.5,-1020.5 995.5,-1020.5 995.5,-976.5 1075.5,-976.5 1075.5,-1020.5"/> | |
| <text text-anchor="middle" x="1035.5" y="-1010.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1035.5" y="-1001.1" font-family="Times,serif" font-size="8.00">FrameFetchContext</text> | |
| <text text-anchor="middle" x="1035.5" y="-992.1" font-family="Times,serif" font-size="8.00">CreateURLLoader</text> | |
| <text text-anchor="middle" x="1035.5" y="-983.1" font-family="Times,serif" font-size="8.00">0 of 0.38s (4.34%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N59 --> | |
| <g id="edge34" class="edge"><title>N9->N59</title> | |
| <g id="a_edge34"><a xlink:title="blink::ResourceLoader::Start -> blink::FrameFetchContext::CreateURLLoader (0.38s)"> | |
| <path fill="none" stroke="#b2a38b" d="M1085.84,-1090.43C1076.37,-1073.33 1062.9,-1049 1052.28,-1029.81"/> | |
| <polygon fill="#b2a38b" stroke="#b2a38b" points="1055.23,-1027.91 1047.32,-1020.85 1049.1,-1031.3 1055.23,-1027.91"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-label"><a xlink:title="blink::ResourceLoader::Start -> blink::FrameFetchContext::CreateURLLoader (0.38s)"> | |
| <text text-anchor="middle" x="1087.5" y="-1051.8" font-family="Times,serif" font-size="14.00"> 0.38s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73 --> | |
| <g id="node73" class="node"><title>N73</title> | |
| <g id="a_node73"><a xlink:title="blink::ResourceLoadScheduler::Request (0.67s)"> | |
| <polygon fill="#ede8e4" stroke="#b2926e" points="1191,-1020.5 1096,-1020.5 1096,-976.5 1191,-976.5 1191,-1020.5"/> | |
| <text text-anchor="middle" x="1143.5" y="-1010.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1143.5" y="-1001.1" font-family="Times,serif" font-size="8.00">ResourceLoadScheduler</text> | |
| <text text-anchor="middle" x="1143.5" y="-992.1" font-family="Times,serif" font-size="8.00">Request</text> | |
| <text text-anchor="middle" x="1143.5" y="-983.1" font-family="Times,serif" font-size="8.00">0 of 0.67s (7.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N73 --> | |
| <g id="edge29" class="edge"><title>N9->N73</title> | |
| <g id="a_edge29"><a xlink:title="blink::ResourceLoader::Start -> blink::ResourceLoadScheduler::Request (0.67s)"> | |
| <path fill="none" stroke="#b2926e" d="M1106.15,-1090.43C1113.11,-1073.49 1122.99,-1049.44 1130.84,-1030.33"/> | |
| <polygon fill="#b2926e" stroke="#b2926e" points="1134.17,-1031.43 1134.73,-1020.85 1127.69,-1028.77 1134.17,-1031.43"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="blink::ResourceLoader::Start -> blink::ResourceLoadScheduler::Request (0.67s)"> | |
| <text text-anchor="middle" x="1140.5" y="-1051.8" font-family="Times,serif" font-size="14.00"> 0.67s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node10" class="node"><title>N10</title> | |
| <g id="a_node10"><a xlink:title="blink::ModuleScript::Create (1.74s)"> | |
| <polygon fill="#edded5" stroke="#b24501" points="384,-1144 295,-1144 295,-1081 384,-1081 384,-1144"/> | |
| <text text-anchor="middle" x="339.5" y="-1132" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="339.5" y="-1121" font-family="Times,serif" font-size="10.00">ModuleScript</text> | |
| <text text-anchor="middle" x="339.5" y="-1110" font-family="Times,serif" font-size="10.00">Create</text> | |
| <text text-anchor="middle" x="339.5" y="-1099" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="339.5" y="-1088" font-family="Times,serif" font-size="10.00">of 1.74s (19.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N19 --> | |
| <g id="edge51" class="edge"><title>N10->N19</title> | |
| <g id="a_edge51"><a xlink:title="blink::ModuleScript::Create -> blink::Modulator::ResolveModuleSpecifier (0.13s)"> | |
| <path fill="none" stroke="#b2aea5" d="M384.001,-1099.94C462.491,-1079.54 625.445,-1037.19 712.582,-1014.55"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="713.512,-1017.93 722.31,-1012.02 711.751,-1011.15 713.512,-1017.93"/> | |
| </a> | |
| </g> | |
| <g id="a_edge51-label"><a xlink:title="blink::ModuleScript::Create -> blink::Modulator::ResolveModuleSpecifier (0.13s)"> | |
| <text text-anchor="middle" x="598.5" y="-1051.8" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43 --> | |
| <g id="node43" class="node"><title>N43</title> | |
| <g id="a_node43"><a xlink:title="blink::ModulatorImplBase::CompileModule (1.57s)"> | |
| <polygon fill="#ede0d7" stroke="#b25212" points="388.5,-1030 290.5,-1030 290.5,-967 388.5,-967 388.5,-1030"/> | |
| <text text-anchor="middle" x="339.5" y="-1018" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="339.5" y="-1007" font-family="Times,serif" font-size="10.00">ModulatorImplBase</text> | |
| <text text-anchor="middle" x="339.5" y="-996" font-family="Times,serif" font-size="10.00">CompileModule</text> | |
| <text text-anchor="middle" x="339.5" y="-985" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="339.5" y="-974" font-family="Times,serif" font-size="10.00">of 1.57s (17.92%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N43 --> | |
| <g id="edge14" class="edge"><title>N10->N43</title> | |
| <g id="a_edge14"><a xlink:title="blink::ModuleScript::Create -> blink::ModulatorImplBase::CompileModule (1.55s)"> | |
| <path fill="none" stroke="#b25414" d="M339.5,-1080.9C339.5,-1068.43 339.5,-1053.82 339.5,-1040.46"/> | |
| <polygon fill="#b25414" stroke="#b25414" points="343,-1040.07 339.5,-1030.07 336,-1040.07 343,-1040.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="blink::ModuleScript::Create -> blink::ModulatorImplBase::CompileModule (1.55s)"> | |
| <text text-anchor="middle" x="356.5" y="-1051.8" font-family="Times,serif" font-size="14.00"> 1.55s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node11" class="node"><title>N11</title> | |
| <g id="a_node11"><a xlink:title="content::ThrottlingURLLoader::StartNow (0.51s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7e" points="1224,-232 1065,-232 1065,-134 1224,-134 1224,-232"/> | |
| <text text-anchor="middle" x="1144.5" y="-215.2" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="1144.5" y="-197.2" font-family="Times,serif" font-size="16.00">ThrottlingURLLoader</text> | |
| <text text-anchor="middle" x="1144.5" y="-179.2" font-family="Times,serif" font-size="16.00">StartNow</text> | |
| <text text-anchor="middle" x="1144.5" y="-161.2" font-family="Times,serif" font-size="16.00">0.35s (4.00%)</text> | |
| <text text-anchor="middle" x="1144.5" y="-143.2" font-family="Times,serif" font-size="16.00">of 0.51s (5.82%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node21" class="node"><title>N21</title> | |
| <g id="a_node21"><a xlink:title="content::mojom::URLLoaderFactoryProxy::CreateLoaderAndStart (0.16s)"> | |
| <polygon fill="#edecea" stroke="#b2ada2" points="1222,-83 1067,-83 1067,-0 1222,-0 1222,-83"/> | |
| <text text-anchor="middle" x="1144.5" y="-67.8" font-family="Times,serif" font-size="14.00">content</text> | |
| <text text-anchor="middle" x="1144.5" y="-52.8" font-family="Times,serif" font-size="14.00">mojom</text> | |
| <text text-anchor="middle" x="1144.5" y="-37.8" font-family="Times,serif" font-size="14.00">URLLoaderFactoryProxy</text> | |
| <text text-anchor="middle" x="1144.5" y="-22.8" font-family="Times,serif" font-size="14.00">CreateLoaderAndStart</text> | |
| <text text-anchor="middle" x="1144.5" y="-7.8" font-family="Times,serif" font-size="14.00">0.16s (1.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N21 --> | |
| <g id="edge49" class="edge"><title>N11->N21</title> | |
| <g id="a_edge49"><a xlink:title="content::ThrottlingURLLoader::StartNow -> content::mojom::URLLoaderFactoryProxy::CreateLoaderAndStart (0.16s)"> | |
| <path fill="none" stroke="#b2ada2" d="M1144.5,-133.992C1144.5,-120.932 1144.5,-106.743 1144.5,-93.5228"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="1148,-93.1684 1144.5,-83.1685 1141,-93.1685 1148,-93.1684"/> | |
| </a> | |
| </g> | |
| <g id="a_edge49-label"><a xlink:title="content::ThrottlingURLLoader::StartNow -> content::mojom::URLLoaderFactoryProxy::CreateLoaderAndStart (0.16s)"> | |
| <text text-anchor="middle" x="1161.5" y="-104.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12 --> | |
| <g id="node12" class="node"><title>N12</title> | |
| <g id="a_node12"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished (1.89s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="451.5,-1402.5 333.5,-1402.5 333.5,-1358.5 451.5,-1358.5 451.5,-1402.5"/> | |
| <text text-anchor="middle" x="392.5" y="-1392.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="392.5" y="-1383.1" font-family="Times,serif" font-size="8.00">DocumentModuleScriptFetcher</text> | |
| <text text-anchor="middle" x="392.5" y="-1374.1" font-family="Times,serif" font-size="8.00">NotifyFinished</text> | |
| <text text-anchor="middle" x="392.5" y="-1365.1" font-family="Times,serif" font-size="8.00">0 of 1.89s (21.58%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41 --> | |
| <g id="node41" class="node"><title>N41</title> | |
| <g id="a_node41"><a xlink:title="blink::ScriptResource::SourceText (0.06s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="599.5,-1275 509.5,-1275 509.5,-1207 599.5,-1207 599.5,-1275"/> | |
| <text text-anchor="middle" x="554.5" y="-1262.2" font-family="Times,serif" font-size="11.00">blink</text> | |
| <text text-anchor="middle" x="554.5" y="-1250.2" font-family="Times,serif" font-size="11.00">ScriptResource</text> | |
| <text text-anchor="middle" x="554.5" y="-1238.2" font-family="Times,serif" font-size="11.00">SourceText</text> | |
| <text text-anchor="middle" x="554.5" y="-1226.2" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text> | |
| <text text-anchor="middle" x="554.5" y="-1214.2" font-family="Times,serif" font-size="11.00">of 0.06s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N41 --> | |
| <g id="edge71" class="edge"><title>N12->N41</title> | |
| <g id="a_edge71"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished -> blink::ScriptResource::SourceText (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M417.457,-1358.32C441.411,-1337.99 478.189,-1306.77 507.616,-1281.79"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="509.956,-1284.4 515.315,-1275.26 505.426,-1279.06 509.956,-1284.4"/> | |
| </a> | |
| </g> | |
| <g id="a_edge71-label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished -> blink::ScriptResource::SourceText (0.06s)"> | |
| <text text-anchor="middle" x="495.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42 --> | |
| <g id="node42" class="node"><title>N42</title> | |
| <g id="a_node42"><a xlink:title="blink::ModuleScriptLoader::NotifyFetchFinished (1.76s)"> | |
| <polygon fill="#edded5" stroke="#b24400" points="390,-1272.5 289,-1272.5 289,-1209.5 390,-1209.5 390,-1272.5"/> | |
| <text text-anchor="middle" x="339.5" y="-1260.5" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="339.5" y="-1249.5" font-family="Times,serif" font-size="10.00">ModuleScriptLoader</text> | |
| <text text-anchor="middle" x="339.5" y="-1238.5" font-family="Times,serif" font-size="10.00">NotifyFetchFinished</text> | |
| <text text-anchor="middle" x="339.5" y="-1227.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="339.5" y="-1216.5" font-family="Times,serif" font-size="10.00">of 1.76s (20.09%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N42 --> | |
| <g id="edge8" class="edge"><title>N12->N42</title> | |
| <g id="a_edge8"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished -> blink::ModuleScriptLoader::NotifyFetchFinished (1.76s)"> | |
| <path fill="none" stroke="#b24400" stroke-width="2" d="M384.335,-1358.32C376.542,-1338.1 364.6,-1307.12 355,-1282.21"/> | |
| <polygon fill="#b24400" stroke="#b24400" stroke-width="2" points="358.178,-1280.73 351.316,-1272.65 351.647,-1283.24 358.178,-1280.73"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished -> blink::ModuleScriptLoader::NotifyFetchFinished (1.76s)"> | |
| <text text-anchor="middle" x="386.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 1.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52 --> | |
| <g id="node52" class="node"><title>N52</title> | |
| <g id="a_node52"><a xlink:title="blink::Resource::RemoveClient (0.05s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="491,-1272.5 408,-1272.5 408,-1209.5 491,-1209.5 491,-1272.5"/> | |
| <text text-anchor="middle" x="449.5" y="-1260.5" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="449.5" y="-1249.5" font-family="Times,serif" font-size="10.00">Resource</text> | |
| <text text-anchor="middle" x="449.5" y="-1238.5" font-family="Times,serif" font-size="10.00">RemoveClient</text> | |
| <text text-anchor="middle" x="449.5" y="-1227.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="449.5" y="-1216.5" font-family="Times,serif" font-size="10.00">of 0.05s (0.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N52 --> | |
| <g id="edge74" class="edge"><title>N12->N52</title> | |
| <g id="a_edge74"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished -> blink::Resource::RemoveClient (0.05s)"> | |
| <path fill="none" stroke="#b2b1ad" d="M401.281,-1358.32C409.662,-1338.1 422.505,-1307.12 432.83,-1282.21"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="436.196,-1283.23 436.792,-1272.65 429.73,-1280.55 436.196,-1283.23"/> | |
| </a> | |
| </g> | |
| <g id="a_edge74-label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished -> blink::Resource::RemoveClient (0.05s)"> | |
| <text text-anchor="middle" x="440.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N4 --> | |
| <g id="edge26" class="edge"><title>N13->N4</title> | |
| <g id="a_edge26"><a xlink:title="content::ThrottlingURLLoader::OnComplete -> content::ResourceDispatcher::OnRequestComplete (0.75s)"> | |
| <path fill="none" stroke="#b28d66" d="M419.5,-1937.23C419.5,-1920.43 419.5,-1900.93 419.5,-1884.99"/> | |
| <polygon fill="#b28d66" stroke="#b28d66" points="423,-1884.59 419.5,-1874.59 416,-1884.59 423,-1884.59"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="content::ThrottlingURLLoader::OnComplete -> content::ResourceDispatcher::OnRequestComplete (0.75s)"> | |
| <text text-anchor="middle" x="436.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.75s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node14" class="node"><title>N14</title> | |
| <g id="a_node14"><a xlink:title="blink::KURL::Init (0.30s)"> | |
| <polygon fill="#edebe9" stroke="#b2a793" points="824,-916 717,-916 717,-836 824,-836 824,-916"/> | |
| <text text-anchor="middle" x="770.5" y="-899.2" font-family="Times,serif" font-size="16.00">blink</text> | |
| <text text-anchor="middle" x="770.5" y="-881.2" font-family="Times,serif" font-size="16.00">KURL</text> | |
| <text text-anchor="middle" x="770.5" y="-863.2" font-family="Times,serif" font-size="16.00">Init</text> | |
| <text text-anchor="middle" x="770.5" y="-845.2" font-family="Times,serif" font-size="16.00">0.30s (3.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node15" class="node"><title>N15</title> | |
| <g id="a_node15"><a xlink:title="blink::V8ScriptRunner::EvaluateModule (0.31s)"> | |
| <polygon fill="#edebe8" stroke="#b2a692" points="1076.5,-1420.5 954.5,-1420.5 954.5,-1340.5 1076.5,-1340.5 1076.5,-1420.5"/> | |
| <text text-anchor="middle" x="1015.5" y="-1403.7" font-family="Times,serif" font-size="16.00">blink</text> | |
| <text text-anchor="middle" x="1015.5" y="-1385.7" font-family="Times,serif" font-size="16.00">V8ScriptRunner</text> | |
| <text text-anchor="middle" x="1015.5" y="-1367.7" font-family="Times,serif" font-size="16.00">EvaluateModule</text> | |
| <text text-anchor="middle" x="1015.5" y="-1349.7" font-family="Times,serif" font-size="16.00">0.31s (3.54%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26 --> | |
| <g id="node26" class="node"><title>N26</title> | |
| <g id="a_node26"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork (5.71s)"> | |
| <polygon fill="#edd8d5" stroke="#b21500" points="646,-2453 547,-2453 547,-2379 646,-2379 646,-2453"/> | |
| <text text-anchor="middle" x="596.5" y="-2441" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="596.5" y="-2430" font-family="Times,serif" font-size="10.00">scheduler</text> | |
| <text text-anchor="middle" x="596.5" y="-2419" font-family="Times,serif" font-size="10.00">TaskQueueManager</text> | |
| <text text-anchor="middle" x="596.5" y="-2408" font-family="Times,serif" font-size="10.00">DoWork</text> | |
| <text text-anchor="middle" x="596.5" y="-2397" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="596.5" y="-2386" font-family="Times,serif" font-size="10.00">of 5.71s (65.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N26 --> | |
| <g id="edge2" class="edge"><title>N16->N26</title> | |
| <g id="a_edge2"><a xlink:title="content::RendererMain -> blink::scheduler::TaskQueueManager::DoWork (5.54s)"> | |
| <path fill="none" stroke="#b21600" stroke-width="4" d="M596.5,-2503.73C596.5,-2491.53 596.5,-2477.07 596.5,-2463.49"/> | |
| <polygon fill="#b21600" stroke="#b21600" stroke-width="4" points="600,-2463.33 596.5,-2453.33 593,-2463.33 600,-2463.33"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="content::RendererMain -> blink::scheduler::TaskQueueManager::DoWork (5.54s)"> | |
| <text text-anchor="middle" x="613.5" y="-2474.8" font-family="Times,serif" font-size="14.00"> 5.54s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node20" class="node"><title>N20</title> | |
| <g id="a_node20"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish (2.01s)"> | |
| <polygon fill="#edddd5" stroke="#b23f00" points="443,-1656 342,-1656 342,-1593 443,-1593 443,-1656"/> | |
| <text text-anchor="middle" x="392.5" y="-1644" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="392.5" y="-1633" font-family="Times,serif" font-size="10.00">ResourceFetcher</text> | |
| <text text-anchor="middle" x="392.5" y="-1622" font-family="Times,serif" font-size="10.00">HandleLoaderFinish</text> | |
| <text text-anchor="middle" x="392.5" y="-1611" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="392.5" y="-1600" font-family="Times,serif" font-size="10.00">of 2.01s (22.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N20 --> | |
| <g id="edge5" class="edge"><title>N17->N20</title> | |
| <g id="a_edge5"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest -> blink::ResourceFetcher::HandleLoaderFinish (2s)"> | |
| <path fill="none" stroke="#b23f00" stroke-width="2" d="M413.306,-1711.8C410.036,-1698.24 405.949,-1681.29 402.264,-1666"/> | |
| <polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="405.66,-1665.15 399.914,-1656.25 398.855,-1666.79 405.66,-1665.15"/> | |
| </a> | |
| </g> | |
| <g id="a_edge5-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest -> blink::ResourceFetcher::HandleLoaderFinish (2s)"> | |
| <text text-anchor="middle" x="416.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 2s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74 --> | |
| <g id="node74" class="node"><title>N74</title> | |
| <g id="a_node74"><a xlink:title="blink::ResourceLoader::DidFinishLoading (0.10s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="538,-1646.5 461,-1646.5 461,-1602.5 538,-1602.5 538,-1646.5"/> | |
| <text text-anchor="middle" x="499.5" y="-1636.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="499.5" y="-1627.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="499.5" y="-1618.1" font-family="Times,serif" font-size="8.00">DidFinishLoading</text> | |
| <text text-anchor="middle" x="499.5" y="-1609.1" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N74 --> | |
| <g id="edge63" class="edge"><title>N17->N74</title> | |
| <g id="a_edge63"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest -> blink::ResourceLoader::DidFinishLoading (0.10s)"> | |
| <path fill="none" stroke="#b2afa8" d="M437.854,-1711.8C449.984,-1694.82 465.916,-1672.52 478.545,-1654.84"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="481.483,-1656.75 484.447,-1646.57 475.787,-1652.68 481.483,-1656.75"/> | |
| </a> | |
| </g> | |
| <g id="a_edge63-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest -> blink::ResourceLoader::DidFinishLoading (0.10s)"> | |
| <text text-anchor="middle" x="481.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node18" class="node"><title>N18</title> | |
| <g id="a_node18"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics (0.34s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="1087.5,-757.5 911.5,-757.5 911.5,-674.5 1087.5,-674.5 1087.5,-757.5"/> | |
| <text text-anchor="middle" x="999.5" y="-742.3" font-family="Times,serif" font-size="14.00">content</text> | |
| <text text-anchor="middle" x="999.5" y="-727.3" font-family="Times,serif" font-size="14.00">RenderThreadImpl</text> | |
| <text text-anchor="middle" x="999.5" y="-712.3" font-family="Times,serif" font-size="14.00">GetRendererMemoryMetrics</text> | |
| <text text-anchor="middle" x="999.5" y="-697.3" font-family="Times,serif" font-size="14.00">0.19s (2.17%)</text> | |
| <text text-anchor="middle" x="999.5" y="-682.3" font-family="Times,serif" font-size="14.00">of 0.34s (3.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node22" class="node"><title>N22</title> | |
| <g id="a_node22"><a xlink:title="blink::WebMemoryStatistics::Get (0.15s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="1069.5,-596 929.5,-596 929.5,-528 1069.5,-528 1069.5,-596"/> | |
| <text text-anchor="middle" x="999.5" y="-580.8" font-family="Times,serif" font-size="14.00">blink</text> | |
| <text text-anchor="middle" x="999.5" y="-565.8" font-family="Times,serif" font-size="14.00">WebMemoryStatistics</text> | |
| <text text-anchor="middle" x="999.5" y="-550.8" font-family="Times,serif" font-size="14.00">Get</text> | |
| <text text-anchor="middle" x="999.5" y="-535.8" font-family="Times,serif" font-size="14.00">0.15s (1.71%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N22 --> | |
| <g id="edge50" class="edge"><title>N18->N22</title> | |
| <g id="a_edge50"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics -> blink::WebMemoryStatistics::Get (0.15s)"> | |
| <path fill="none" stroke="#b2ada3" d="M999.5,-674.267C999.5,-653.258 999.5,-627.629 999.5,-606.266"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="1003,-606.16 999.5,-596.16 996,-606.16 1003,-606.16"/> | |
| </a> | |
| </g> | |
| <g id="a_edge50-label"><a xlink:title="content::RenderThreadImpl::GetRendererMemoryMetrics -> blink::WebMemoryStatistics::Get (0.15s)"> | |
| <text text-anchor="middle" x="1016.5" y="-617.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N14 --> | |
| <g id="edge44" class="edge"><title>N19->N14</title> | |
| <g id="a_edge44"><a xlink:title="blink::Modulator::ResolveModuleSpecifier -> blink::KURL::Init (0.29s)"> | |
| <path fill="none" stroke="#b2a794" d="M770.5,-976.234C770.5,-962.34 770.5,-943.599 770.5,-926.146"/> | |
| <polygon fill="#b2a794" stroke="#b2a794" points="774,-926.064 770.5,-916.064 767,-926.064 774,-926.064"/> | |
| </a> | |
| </g> | |
| <g id="a_edge44-label"><a xlink:title="blink::Modulator::ResolveModuleSpecifier -> blink::KURL::Init (0.29s)"> | |
| <text text-anchor="middle" x="787.5" y="-937.8" font-family="Times,serif" font-size="14.00"> 0.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39 --> | |
| <g id="node39" class="node"><title>N39</title> | |
| <g id="a_node39"><a xlink:title="blink::Resource::NotifyFinished (1.89s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="437,-1539.5 348,-1539.5 348,-1476.5 437,-1476.5 437,-1539.5"/> | |
| <text text-anchor="middle" x="392.5" y="-1527.5" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="392.5" y="-1516.5" font-family="Times,serif" font-size="10.00">Resource</text> | |
| <text text-anchor="middle" x="392.5" y="-1505.5" font-family="Times,serif" font-size="10.00">NotifyFinished</text> | |
| <text text-anchor="middle" x="392.5" y="-1494.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="392.5" y="-1483.5" font-family="Times,serif" font-size="10.00">of 1.89s (21.58%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N39 --> | |
| <g id="edge6" class="edge"><title>N20->N39</title> | |
| <g id="a_edge6"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish -> blink::Resource::NotifyFinished (1.89s)"> | |
| <path fill="none" stroke="#b24100" stroke-width="2" d="M392.5,-1592.82C392.5,-1579.6 392.5,-1563.95 392.5,-1549.77"/> | |
| <polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="396,-1549.77 392.5,-1539.77 389,-1549.77 396,-1549.77"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish -> blink::Resource::NotifyFinished (1.89s)"> | |
| <text text-anchor="middle" x="409.5" y="-1563.8" font-family="Times,serif" font-size="14.00"> 1.89s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40 --> | |
| <g id="node40" class="node"><title>N40</title> | |
| <g id="a_node40"><a xlink:title="blink::ResourceResponse::operator= (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="330,-1539.5 237,-1539.5 237,-1476.5 330,-1476.5 330,-1539.5"/> | |
| <text text-anchor="middle" x="283.5" y="-1527.5" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="283.5" y="-1516.5" font-family="Times,serif" font-size="10.00">ResourceResponse</text> | |
| <text text-anchor="middle" x="283.5" y="-1505.5" font-family="Times,serif" font-size="10.00">operator=</text> | |
| <text text-anchor="middle" x="283.5" y="-1494.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="283.5" y="-1483.5" font-family="Times,serif" font-size="10.00">of 0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N40 --> | |
| <g id="edge82" class="edge"><title>N20->N40</title> | |
| <g id="a_edge82"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish -> blink::ResourceResponse::operator= (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M363.29,-1592.82C349.972,-1578.83 334.066,-1562.12 319.972,-1547.31"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="322.221,-1544.6 312.791,-1539.77 317.151,-1549.42 322.221,-1544.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge82-label"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish -> blink::ResourceResponse::operator= (0.02s)"> | |
| <text text-anchor="middle" x="362.5" y="-1563.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44 --> | |
| <g id="node44" class="node"><title>N44</title> | |
| <g id="a_node44"><a xlink:title="blink::ResourceLoader::DidReceiveResponse (0.19s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="229,-1874.5 144,-1874.5 144,-1830.5 229,-1830.5 229,-1874.5"/> | |
| <text text-anchor="middle" x="186.5" y="-1864.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="186.5" y="-1855.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="186.5" y="-1846.1" font-family="Times,serif" font-size="8.00">DidReceiveResponse</text> | |
| <text text-anchor="middle" x="186.5" y="-1837.1" font-family="Times,serif" font-size="8.00">0 of 0.19s (2.17%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N44 --> | |
| <g id="edge46" class="edge"><title>N23->N44</title> | |
| <g id="a_edge46"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse ... blink::ResourceLoader::DidReceiveResponse (0.19s)"> | |
| <path fill="none" stroke="#b2ac9f" stroke-dasharray="1,5" d="M251.849,-1939.23C238.17,-1921.28 221.872,-1899.9 208.975,-1882.98"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="211.418,-1880.41 202.572,-1874.58 205.851,-1884.66 211.418,-1880.41"/> | |
| </a> | |
| </g> | |
| <g id="a_edge46-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse ... blink::ResourceLoader::DidReceiveResponse (0.19s)"> | |
| <text text-anchor="middle" x="250.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48 --> | |
| <g id="node48" class="node"><title>N48</title> | |
| <g id="a_node48"><a xlink:title="content::WebURLLoaderImpl::PopulateURLResponse (0.06s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="359.5,-1884 247.5,-1884 247.5,-1821 359.5,-1821 359.5,-1884"/> | |
| <text text-anchor="middle" x="303.5" y="-1872" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="303.5" y="-1861" font-family="Times,serif" font-size="10.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="303.5" y="-1850" font-family="Times,serif" font-size="10.00">PopulateURLResponse</text> | |
| <text text-anchor="middle" x="303.5" y="-1839" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="303.5" y="-1828" font-family="Times,serif" font-size="10.00">of 0.06s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N48 --> | |
| <g id="edge73" class="edge"><title>N23->N48</title> | |
| <g id="a_edge73"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse -> content::WebURLLoaderImpl::PopulateURLResponse (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" d="M286.636,-1939.23C289.415,-1925.1 292.614,-1908.84 295.474,-1894.3"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="298.989,-1894.56 297.485,-1884.08 292.121,-1893.21 298.989,-1894.56"/> | |
| </a> | |
| </g> | |
| <g id="a_edge73-label"><a xlink:title="content::WebURLLoaderImpl::Context::OnReceivedResponse -> content::WebURLLoaderImpl::PopulateURLResponse (0.06s)"> | |
| <text text-anchor="middle" x="311.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node24" class="node"><title>N24</title> | |
| <g id="a_node24"><a xlink:title="content::RenderFrameImpl::DidRunContentWithCertificateErrors (0.12s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="219,-1540 -1.42109e-14,-1540 -1.42109e-14,-1476 219,-1476 219,-1540"/> | |
| <text text-anchor="middle" x="109.5" y="-1525.6" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="109.5" y="-1511.6" font-family="Times,serif" font-size="13.00">RenderFrameImpl</text> | |
| <text text-anchor="middle" x="109.5" y="-1497.6" font-family="Times,serif" font-size="13.00">DidRunContentWithCertificateErrors</text> | |
| <text text-anchor="middle" x="109.5" y="-1483.6" font-family="Times,serif" font-size="13.00">0.12s (1.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node25" class="node"><title>N25</title> | |
| <g id="a_node25"><a xlink:title="content::WebURLLoaderImpl::Context::Start (0.63s)"> | |
| <polygon fill="#ede9e4" stroke="#b29572" points="1200.5,-477 1088.5,-477 1088.5,-397 1200.5,-397 1200.5,-477"/> | |
| <text text-anchor="middle" x="1144.5" y="-464.2" font-family="Times,serif" font-size="11.00">content</text> | |
| <text text-anchor="middle" x="1144.5" y="-452.2" font-family="Times,serif" font-size="11.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="1144.5" y="-440.2" font-family="Times,serif" font-size="11.00">Context</text> | |
| <text text-anchor="middle" x="1144.5" y="-428.2" font-family="Times,serif" font-size="11.00">Start</text> | |
| <text text-anchor="middle" x="1144.5" y="-416.2" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text> | |
| <text text-anchor="middle" x="1144.5" y="-404.2" font-family="Times,serif" font-size="11.00">of 0.63s (7.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46 --> | |
| <g id="node46" class="node"><title>N46</title> | |
| <g id="a_node46"><a xlink:title="content::ResourceDispatcher::StartAsync (0.52s)"> | |
| <polygon fill="#edeae6" stroke="#b29b7d" points="1193.5,-346 1095.5,-346 1095.5,-283 1193.5,-283 1193.5,-346"/> | |
| <text text-anchor="middle" x="1144.5" y="-334" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="1144.5" y="-323" font-family="Times,serif" font-size="10.00">ResourceDispatcher</text> | |
| <text text-anchor="middle" x="1144.5" y="-312" font-family="Times,serif" font-size="10.00">StartAsync</text> | |
| <text text-anchor="middle" x="1144.5" y="-301" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1144.5" y="-290" font-family="Times,serif" font-size="10.00">of 0.52s (5.94%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N46 --> | |
| <g id="edge32" class="edge"><title>N25->N46</title> | |
| <g id="a_edge32"><a xlink:title="content::WebURLLoaderImpl::Context::Start -> content::ResourceDispatcher::StartAsync (0.52s)"> | |
| <path fill="none" stroke="#b29b7d" d="M1144.5,-396.877C1144.5,-383.863 1144.5,-369.343 1144.5,-356.212"/> | |
| <polygon fill="#b29b7d" stroke="#b29b7d" points="1148,-356.034 1144.5,-346.034 1141,-356.034 1148,-356.034"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="content::WebURLLoaderImpl::Context::Start -> content::ResourceDispatcher::StartAsync (0.52s)"> | |
| <text text-anchor="middle" x="1161.5" y="-367.8" font-family="Times,serif" font-size="14.00"> 0.52s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N1 --> | |
| <g id="edge1" class="edge"><title>N26->N1</title> | |
| <g id="a_edge1"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork -> blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (5.59s)"> | |
| <path fill="none" stroke="#b21600" stroke-width="4" d="M596.5,-2378.66C596.5,-2366.33 596.5,-2352.12 596.5,-2338.16"/> | |
| <polygon fill="#b21600" stroke="#b21600" stroke-width="4" points="600,-2338.07 596.5,-2328.07 593,-2338.07 600,-2338.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork -> blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (5.59s)"> | |
| <text text-anchor="middle" x="613.5" y="-2349.8" font-family="Times,serif" font-size="14.00"> 5.59s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67 --> | |
| <g id="node67" class="node"><title>N67</title> | |
| <g id="a_node67"><a xlink:title="blink::ModuleScriptLoaderRegistry::Fetch (1.29s)"> | |
| <polygon fill="#ede3db" stroke="#b2682f" points="951.5,-1760.5 841.5,-1760.5 841.5,-1716.5 951.5,-1716.5 951.5,-1760.5"/> | |
| <text text-anchor="middle" x="896.5" y="-1750.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="896.5" y="-1741.1" font-family="Times,serif" font-size="8.00">ModuleScriptLoaderRegistry</text> | |
| <text text-anchor="middle" x="896.5" y="-1732.1" font-family="Times,serif" font-size="8.00">Fetch</text> | |
| <text text-anchor="middle" x="896.5" y="-1723.1" font-family="Times,serif" font-size="8.00">0 of 1.29s (14.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N67 --> | |
| <g id="edge18" class="edge"><title>N27->N67</title> | |
| <g id="a_edge18"><a xlink:title="blink::ModuleMap::FetchSingleModuleScript -> blink::ModuleScriptLoaderRegistry::Fetch (1.29s)"> | |
| <path fill="none" stroke="#b2682f" d="M896.5,-1820.9C896.5,-1805.32 896.5,-1786.42 896.5,-1770.75"/> | |
| <polygon fill="#b2682f" stroke="#b2682f" points="900,-1770.5 896.5,-1760.5 893,-1770.5 900,-1770.5"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="blink::ModuleMap::FetchSingleModuleScript -> blink::ModuleScriptLoaderRegistry::Fetch (1.29s)"> | |
| <text text-anchor="middle" x="913.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 1.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node28" class="node"><title>N28</title> | |
| <g id="a_node28"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest (0.10s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="580,-1542 455,-1542 455,-1474 580,-1474 580,-1542"/> | |
| <text text-anchor="middle" x="517.5" y="-1529.2" font-family="Times,serif" font-size="11.00">content</text> | |
| <text text-anchor="middle" x="517.5" y="-1517.2" font-family="Times,serif" font-size="11.00">ResourceDispatcher</text> | |
| <text text-anchor="middle" x="517.5" y="-1505.2" font-family="Times,serif" font-size="11.00">RemovePendingRequest</text> | |
| <text text-anchor="middle" x="517.5" y="-1493.2" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text> | |
| <text text-anchor="middle" x="517.5" y="-1481.2" font-family="Times,serif" font-size="11.00">of 0.10s (1.14%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node29" class="node"><title>N29</title> | |
| <g id="a_node29"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::PostDelayedTask (0.10s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="557.5,-1423 469.5,-1423 469.5,-1338 557.5,-1338 557.5,-1423"/> | |
| <text text-anchor="middle" x="513.5" y="-1411" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="513.5" y="-1400" font-family="Times,serif" font-size="10.00">scheduler</text> | |
| <text text-anchor="middle" x="513.5" y="-1389" font-family="Times,serif" font-size="10.00">internal</text> | |
| <text text-anchor="middle" x="513.5" y="-1378" font-family="Times,serif" font-size="10.00">TaskQueueImpl</text> | |
| <text text-anchor="middle" x="513.5" y="-1367" font-family="Times,serif" font-size="10.00">PostDelayedTask</text> | |
| <text text-anchor="middle" x="513.5" y="-1356" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="513.5" y="-1345" font-family="Times,serif" font-size="10.00">of 0.10s (1.14%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N29 --> | |
| <g id="edge87" class="edge"><title>N28->N29</title> | |
| <g id="a_edge87"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest ... blink::scheduler::internal::TaskQueueImpl::PostDelayedTask (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M516.439,-1473.7C516.044,-1461.31 515.586,-1446.95 515.151,-1433.3"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="518.641,-1432.93 514.824,-1423.05 511.645,-1433.16 518.641,-1432.93"/> | |
| </a> | |
| </g> | |
| <g id="a_edge87-label"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest ... blink::scheduler::internal::TaskQueueImpl::PostDelayedTask (0.01s)"> | |
| <text text-anchor="middle" x="533.5" y="-1444.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node36" class="node"><title>N36</title> | |
| <g id="a_node36"><a xlink:title="content::URLResponseBodyConsumer::~URLResponseBodyConsumer (0.06s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="744,-1410.5 575,-1410.5 575,-1350.5 744,-1350.5 744,-1410.5"/> | |
| <text text-anchor="middle" x="659.5" y="-1396.9" font-family="Times,serif" font-size="12.00">content</text> | |
| <text text-anchor="middle" x="659.5" y="-1383.9" font-family="Times,serif" font-size="12.00">URLResponseBodyConsumer</text> | |
| <text text-anchor="middle" x="659.5" y="-1370.9" font-family="Times,serif" font-size="12.00">~URLResponseBodyConsumer</text> | |
| <text text-anchor="middle" x="659.5" y="-1357.9" font-family="Times,serif" font-size="12.00">0.06s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28->N36 --> | |
| <g id="edge72" class="edge"><title>N28->N36</title> | |
| <g id="a_edge72"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest ... content::URLResponseBodyConsumer::~URLResponseBodyConsumer (0.06s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M555.181,-1473.7C574.765,-1456.39 598.724,-1435.21 618.74,-1417.52"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="621.308,-1419.93 626.483,-1410.68 616.672,-1414.68 621.308,-1419.93"/> | |
| </a> | |
| </g> | |
| <g id="a_edge72-label"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest ... content::URLResponseBodyConsumer::~URLResponseBodyConsumer (0.06s)"> | |
| <text text-anchor="middle" x="605.5" y="-1444.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node35" class="node"><title>N35</title> | |
| <g id="a_node35"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::PostImmediateTaskImpl (0.09s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="743,-1287 618,-1287 618,-1195 743,-1195 743,-1287"/> | |
| <text text-anchor="middle" x="680.5" y="-1274.2" font-family="Times,serif" font-size="11.00">blink</text> | |
| <text text-anchor="middle" x="680.5" y="-1262.2" font-family="Times,serif" font-size="11.00">scheduler</text> | |
| <text text-anchor="middle" x="680.5" y="-1250.2" font-family="Times,serif" font-size="11.00">internal</text> | |
| <text text-anchor="middle" x="680.5" y="-1238.2" font-family="Times,serif" font-size="11.00">TaskQueueImpl</text> | |
| <text text-anchor="middle" x="680.5" y="-1226.2" font-family="Times,serif" font-size="11.00">PostImmediateTaskImpl</text> | |
| <text text-anchor="middle" x="680.5" y="-1214.2" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text> | |
| <text text-anchor="middle" x="680.5" y="-1202.2" font-family="Times,serif" font-size="11.00">of 0.09s (1.03%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N35 --> | |
| <g id="edge65" class="edge"><title>N29->N35</title> | |
| <g id="a_edge65"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::PostDelayedTask -> blink::scheduler::internal::TaskQueueImpl::PostImmediateTaskImpl (0.09s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M557.814,-1343.01C576.241,-1327.84 597.959,-1309.96 617.962,-1293.49"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="620.33,-1296.07 625.825,-1287.02 615.88,-1290.67 620.33,-1296.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge65-label"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::PostDelayedTask -> blink::scheduler::internal::TaskQueueImpl::PostImmediateTaskImpl (0.09s)"> | |
| <text text-anchor="middle" x="619.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30 --> | |
| <g id="node30" class="node"><title>N30</title> | |
| <g id="a_node30"><a xlink:title="content::RenderFrameImpl::WillSendRequest (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="940.5,-910 842.5,-910 842.5,-842 940.5,-842 940.5,-910"/> | |
| <text text-anchor="middle" x="891.5" y="-897.2" font-family="Times,serif" font-size="11.00">content</text> | |
| <text text-anchor="middle" x="891.5" y="-885.2" font-family="Times,serif" font-size="11.00">RenderFrameImpl</text> | |
| <text text-anchor="middle" x="891.5" y="-873.2" font-family="Times,serif" font-size="11.00">WillSendRequest</text> | |
| <text text-anchor="middle" x="891.5" y="-861.2" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text> | |
| <text text-anchor="middle" x="891.5" y="-849.2" font-family="Times,serif" font-size="11.00">of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node32" class="node"><title>N32</title> | |
| <g id="a_node32"><a xlink:title="blink::ScriptLoader::ExecuteScriptBlock (0.34s)"> | |
| <polygon fill="#edebe8" stroke="#b2a58f" points="957,-1998.5 876,-1998.5 876,-1954.5 957,-1954.5 957,-1998.5"/> | |
| <text text-anchor="middle" x="916.5" y="-1988.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="916.5" y="-1979.1" font-family="Times,serif" font-size="8.00">ScriptLoader</text> | |
| <text text-anchor="middle" x="916.5" y="-1970.1" font-family="Times,serif" font-size="8.00">ExecuteScriptBlock</text> | |
| <text text-anchor="middle" x="916.5" y="-1961.1" font-family="Times,serif" font-size="8.00">0 of 0.34s (3.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N27 --> | |
| <g id="edge86" class="edge"><title>N32->N27</title> | |
| <g id="a_edge86"><a xlink:title="blink::ScriptLoader::ExecuteScriptBlock ... blink::ModuleMap::FetchSingleModuleScript (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M913.016,-1954.25C910.297,-1937.66 906.44,-1914.13 903.136,-1893.98"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="906.59,-1893.41 901.518,-1884.11 899.682,-1894.54 906.59,-1893.41"/> | |
| </a> | |
| </g> | |
| <g id="a_edge86-label"><a xlink:title="blink::ScriptLoader::ExecuteScriptBlock ... blink::ModuleMap::FetchSingleModuleScript (0.01s)"> | |
| <text text-anchor="middle" x="923.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77 --> | |
| <g id="node77" class="node"><title>N77</title> | |
| <g id="a_node77"><a xlink:title="blink::ScriptLoader::DoExecuteScript (0.32s)"> | |
| <polygon fill="#edebe8" stroke="#b2a691" points="1053,-1874.5 976,-1874.5 976,-1830.5 1053,-1830.5 1053,-1874.5"/> | |
| <text text-anchor="middle" x="1014.5" y="-1864.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1014.5" y="-1855.1" font-family="Times,serif" font-size="8.00">ScriptLoader</text> | |
| <text text-anchor="middle" x="1014.5" y="-1846.1" font-family="Times,serif" font-size="8.00">DoExecuteScript</text> | |
| <text text-anchor="middle" x="1014.5" y="-1837.1" font-family="Times,serif" font-size="8.00">0 of 0.32s (3.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N77 --> | |
| <g id="edge39" class="edge"><title>N32->N77</title> | |
| <g id="a_edge39"><a xlink:title="blink::ScriptLoader::ExecuteScriptBlock -> blink::ScriptLoader::DoExecuteScript (0.32s)"> | |
| <path fill="none" stroke="#b2a691" d="M933.57,-1954.25C949.52,-1934.39 973.464,-1904.59 991.173,-1882.54"/> | |
| <polygon fill="#b2a691" stroke="#b2a691" points="994.091,-1884.5 997.625,-1874.51 988.634,-1880.11 994.091,-1884.5"/> | |
| </a> | |
| </g> | |
| <g id="a_edge39-label"><a xlink:title="blink::ScriptLoader::ExecuteScriptBlock -> blink::ScriptLoader::DoExecuteScript (0.32s)"> | |
| <text text-anchor="middle" x="991.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.32s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node33" class="node"><title>N33</title> | |
| <g id="a_node33"><a xlink:title="content::RenderFrameImpl::UpdatePeakMemoryStats (0.36s)"> | |
| <polygon fill="#edebe8" stroke="#b2a48d" points="1078.5,-907.5 958.5,-907.5 958.5,-844.5 1078.5,-844.5 1078.5,-907.5"/> | |
| <text text-anchor="middle" x="1018.5" y="-895.5" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="1018.5" y="-884.5" font-family="Times,serif" font-size="10.00">RenderFrameImpl</text> | |
| <text text-anchor="middle" x="1018.5" y="-873.5" font-family="Times,serif" font-size="10.00">UpdatePeakMemoryStats</text> | |
| <text text-anchor="middle" x="1018.5" y="-862.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="1018.5" y="-851.5" font-family="Times,serif" font-size="10.00">of 0.36s (4.11%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N18 --> | |
| <g id="edge36" class="edge"><title>N33->N18</title> | |
| <g id="a_edge36"><a xlink:title="content::RenderFrameImpl::UpdatePeakMemoryStats -> content::RenderThreadImpl::GetRendererMemoryMetrics (0.34s)"> | |
| <path fill="none" stroke="#b2a58f" d="M1014.79,-844.161C1012.18,-822.455 1008.63,-792.905 1005.6,-767.753"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="1009.06,-767.151 1004.39,-757.64 1002.11,-767.986 1009.06,-767.151"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="content::RenderFrameImpl::UpdatePeakMemoryStats -> content::RenderThreadImpl::GetRendererMemoryMetrics (0.34s)"> | |
| <text text-anchor="middle" x="1028.5" y="-806.8" font-family="Times,serif" font-size="14.00"> 0.34s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53 --> | |
| <g id="node53" class="node"><title>N53</title> | |
| <g id="a_node53"><a xlink:title="blink::(anonymous namespace)::IdleTaskRunner::Run (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="1136,-2003 1041,-2003 1041,-1950 1136,-1950 1136,-2003"/> | |
| <text text-anchor="middle" x="1088.5" y="-1992.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1088.5" y="-1983.6" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1088.5" y="-1974.6" font-family="Times,serif" font-size="8.00">IdleTaskRunner</text> | |
| <text text-anchor="middle" x="1088.5" y="-1965.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="1088.5" y="-1956.6" font-family="Times,serif" font-size="8.00">0 of 0.08s (0.91%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N53 --> | |
| <g id="edge67" class="edge"><title>N34->N53</title> | |
| <g id="a_edge67"><a xlink:title="blink::scheduler::WebSchedulerImpl::RunIdleTask -> blink::(anonymous namespace)::IdleTaskRunner::Run (0.08s)"> | |
| <path fill="none" stroke="#b2b0aa" d="M967.215,-2074.88C993.043,-2054.15 1024.37,-2028.99 1048.72,-2009.44"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="1051.09,-2012.03 1056.69,-2003.04 1046.7,-2006.57 1051.09,-2012.03"/> | |
| </a> | |
| </g> | |
| <g id="a_edge67-label"><a xlink:title="blink::scheduler::WebSchedulerImpl::RunIdleTask -> blink::(anonymous namespace)::IdleTaskRunner::Run (0.08s)"> | |
| <text text-anchor="middle" x="1031.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38 --> | |
| <g id="node38" class="node"><title>N38</title> | |
| <g id="a_node38"><a xlink:title="blink::ScriptModule::Instantiate (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="823,-1656 740,-1656 740,-1593 823,-1593 823,-1656"/> | |
| <text text-anchor="middle" x="781.5" y="-1644" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="781.5" y="-1633" font-family="Times,serif" font-size="10.00">ScriptModule</text> | |
| <text text-anchor="middle" x="781.5" y="-1622" font-family="Times,serif" font-size="10.00">Instantiate</text> | |
| <text text-anchor="middle" x="781.5" y="-1611" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text> | |
| <text text-anchor="middle" x="781.5" y="-1600" font-family="Times,serif" font-size="10.00">of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38->N19 --> | |
| <g id="edge69" class="edge"><title>N38->N19</title> | |
| <g id="a_edge69"><a xlink:title="blink::ScriptModule::Instantiate ... blink::Modulator::ResolveModuleSpecifier (0.07s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M793.212,-1592.89C800.885,-1570.11 809.5,-1538.06 809.5,-1509 809.5,-1509 809.5,-1509 809.5,-1111.5 809.5,-1082.62 797.795,-1051.77 787.21,-1029.78"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="790.235,-1028 782.626,-1020.63 783.977,-1031.14 790.235,-1028"/> | |
| </a> | |
| </g> | |
| <g id="a_edge69-label"><a xlink:title="blink::ScriptModule::Instantiate ... blink::Modulator::ResolveModuleSpecifier (0.07s)"> | |
| <text text-anchor="middle" x="826.5" y="-1308.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N12 --> | |
| <g id="edge7" class="edge"><title>N39->N12</title> | |
| <g id="a_edge7"><a xlink:title="blink::Resource::NotifyFinished -> blink::DocumentModuleScriptFetcher::NotifyFinished (1.88s)"> | |
| <path fill="none" stroke="#b24200" stroke-width="2" d="M392.5,-1476.3C392.5,-1457.07 392.5,-1432.36 392.5,-1412.99"/> | |
| <polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="396,-1412.84 392.5,-1402.84 389,-1412.84 396,-1412.84"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="blink::Resource::NotifyFinished -> blink::DocumentModuleScriptFetcher::NotifyFinished (1.88s)"> | |
| <text text-anchor="middle" x="409.5" y="-1444.8" font-family="Times,serif" font-size="14.00"> 1.88s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N10 --> | |
| <g id="edge9" class="edge"><title>N42->N10</title> | |
| <g id="a_edge9"><a xlink:title="blink::ModuleScriptLoader::NotifyFetchFinished -> blink::ModuleScript::Create (1.74s)"> | |
| <path fill="none" stroke="#b24501" d="M339.5,-1209.38C339.5,-1192.87 339.5,-1172.29 339.5,-1154.43"/> | |
| <polygon fill="#b24501" stroke="#b24501" points="343,-1154.28 339.5,-1144.28 336,-1154.28 343,-1154.28"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="blink::ModuleScriptLoader::NotifyFetchFinished -> blink::ModuleScript::Create (1.74s)"> | |
| <text text-anchor="middle" x="356.5" y="-1165.8" font-family="Times,serif" font-size="14.00"> 1.74s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79 --> | |
| <g id="node79" class="node"><title>N79</title> | |
| <g id="a_node79"><a xlink:title="blink::ScriptModule::Compile (1.56s)"> | |
| <polygon fill="#ede0d8" stroke="#b25313" points="379.5,-898 299.5,-898 299.5,-854 379.5,-854 379.5,-898"/> | |
| <text text-anchor="middle" x="339.5" y="-887.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="339.5" y="-878.6" font-family="Times,serif" font-size="8.00">ScriptModule</text> | |
| <text text-anchor="middle" x="339.5" y="-869.6" font-family="Times,serif" font-size="8.00">Compile</text> | |
| <text text-anchor="middle" x="339.5" y="-860.6" font-family="Times,serif" font-size="8.00">0 of 1.56s (17.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N79 --> | |
| <g id="edge11" class="edge"><title>N43->N79</title> | |
| <g id="a_edge11"><a xlink:title="blink::ModulatorImplBase::CompileModule -> blink::ScriptModule::Compile (1.56s)"> | |
| <path fill="none" stroke="#b25313" d="M339.5,-966.781C339.5,-948.828 339.5,-926.227 339.5,-908.193"/> | |
| <polygon fill="#b25313" stroke="#b25313" points="343,-908.173 339.5,-898.173 336,-908.173 343,-908.173"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="blink::ModulatorImplBase::CompileModule -> blink::ScriptModule::Compile (1.56s)"> | |
| <text text-anchor="middle" x="356.5" y="-937.8" font-family="Times,serif" font-size="14.00"> 1.56s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N40 --> | |
| <g id="edge83" class="edge"><title>N44->N40</title> | |
| <g id="a_edge83"><a xlink:title="blink::ResourceLoader::DidReceiveResponse ... blink::ResourceResponse::operator= (0.02s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M195.89,-1830.49C199.473,-1822.04 203.43,-1812.15 206.5,-1803 236.276,-1714.23 261.771,-1607.26 274.612,-1549.98"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="278.104,-1550.39 276.86,-1539.87 271.271,-1548.87 278.104,-1550.39"/> | |
| </a> | |
| </g> | |
| <g id="a_edge83-label"><a xlink:title="blink::ResourceLoader::DidReceiveResponse ... blink::ResourceResponse::operator= (0.02s)"> | |
| <text text-anchor="middle" x="261.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60 --> | |
| <g id="node60" class="node"><title>N60</title> | |
| <g id="a_node60"><a xlink:title="blink::FrameFetchContext::DispatchDidReceiveResponse (0.16s)"> | |
| <polygon fill="#edecea" stroke="#b2ada2" points="200,-1760.5 87,-1760.5 87,-1716.5 200,-1716.5 200,-1760.5"/> | |
| <text text-anchor="middle" x="143.5" y="-1750.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="143.5" y="-1741.1" font-family="Times,serif" font-size="8.00">FrameFetchContext</text> | |
| <text text-anchor="middle" x="143.5" y="-1732.1" font-family="Times,serif" font-size="8.00">DispatchDidReceiveResponse</text> | |
| <text text-anchor="middle" x="143.5" y="-1723.1" font-family="Times,serif" font-size="8.00">0 of 0.16s (1.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N60 --> | |
| <g id="edge48" class="edge"><title>N44->N60</title> | |
| <g id="a_edge48"><a xlink:title="blink::ResourceLoader::DidReceiveResponse -> blink::FrameFetchContext::DispatchDidReceiveResponse (0.16s)"> | |
| <path fill="none" stroke="#b2ada2" d="M178.412,-1830.43C171.907,-1813.49 162.674,-1789.44 155.337,-1770.33"/> | |
| <polygon fill="#b2ada2" stroke="#b2ada2" points="158.55,-1768.93 151.698,-1760.85 152.015,-1771.44 158.55,-1768.93"/> | |
| </a> | |
| </g> | |
| <g id="a_edge48-label"><a xlink:title="blink::ResourceLoader::DidReceiveResponse -> blink::FrameFetchContext::DispatchDidReceiveResponse (0.16s)"> | |
| <text text-anchor="middle" x="185.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45 --> | |
| <g id="node45" class="node"><title>N45</title> | |
| <g id="a_node45"><a xlink:title="content::WebURLLoaderImpl::LoadAsynchronously (0.67s)"> | |
| <polygon fill="#ede8e4" stroke="#b2926e" points="1197,-593.5 1092,-593.5 1092,-530.5 1197,-530.5 1197,-593.5"/> | |
| <text text-anchor="middle" x="1144.5" y="-581.5" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="1144.5" y="-570.5" font-family="Times,serif" font-size="10.00">WebURLLoaderImpl</text> | |
| <text text-anchor="middle" x="1144.5" y="-559.5" font-family="Times,serif" font-size="10.00">LoadAsynchronously</text> | |
| <text text-anchor="middle" x="1144.5" y="-548.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1144.5" y="-537.5" font-family="Times,serif" font-size="10.00">of 0.67s (7.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N25 --> | |
| <g id="edge31" class="edge"><title>N45->N25</title> | |
| <g id="a_edge31"><a xlink:title="content::WebURLLoaderImpl::LoadAsynchronously -> content::WebURLLoaderImpl::Context::Start (0.63s)"> | |
| <path fill="none" stroke="#b29572" d="M1144.5,-530.279C1144.5,-517.339 1144.5,-501.949 1144.5,-487.482"/> | |
| <polygon fill="#b29572" stroke="#b29572" points="1148,-487.16 1144.5,-477.16 1141,-487.16 1148,-487.16"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="content::WebURLLoaderImpl::LoadAsynchronously -> content::WebURLLoaderImpl::Context::Start (0.63s)"> | |
| <text text-anchor="middle" x="1161.5" y="-498.8" font-family="Times,serif" font-size="14.00"> 0.63s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N11 --> | |
| <g id="edge33" class="edge"><title>N46->N11</title> | |
| <g id="a_edge33"><a xlink:title="content::ResourceDispatcher::StartAsync ... content::ThrottlingURLLoader::StartNow (0.51s)"> | |
| <path fill="none" stroke="#b29c7e" stroke-dasharray="1,5" d="M1144.5,-282.81C1144.5,-270.653 1144.5,-256.255 1144.5,-242.266"/> | |
| <polygon fill="#b29c7e" stroke="#b29c7e" points="1148,-242.189 1144.5,-232.189 1141,-242.189 1148,-242.189"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-label"><a xlink:title="content::ResourceDispatcher::StartAsync ... content::ThrottlingURLLoader::StartNow (0.51s)"> | |
| <text text-anchor="middle" x="1161.5" y="-253.8" font-family="Times,serif" font-size="14.00"> 0.51s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47 --> | |
| <g id="node47" class="node"><title>N47</title> | |
| <g id="a_node47"><a xlink:title="blink::scheduler::TaskQueueThrottler::IsThrottled (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1261,-2010.5 1154,-2010.5 1154,-1942.5 1261,-1942.5 1261,-2010.5"/> | |
| <text text-anchor="middle" x="1207.5" y="-1997.7" font-family="Times,serif" font-size="11.00">blink</text> | |
| <text text-anchor="middle" x="1207.5" y="-1985.7" font-family="Times,serif" font-size="11.00">scheduler</text> | |
| <text text-anchor="middle" x="1207.5" y="-1973.7" font-family="Times,serif" font-size="11.00">TaskQueueThrottler</text> | |
| <text text-anchor="middle" x="1207.5" y="-1961.7" font-family="Times,serif" font-size="11.00">IsThrottled</text> | |
| <text text-anchor="middle" x="1207.5" y="-1949.7" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49->N47 --> | |
| <g id="edge79" class="edge"><title>N49->N47</title> | |
| <g id="a_edge79"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::OnTaskCompleted ... blink::scheduler::TaskQueueThrottler::IsThrottled (0.04s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1203.33,-2072.3C1204.05,-2056.1 1204.86,-2037.52 1205.58,-2021.13"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1209.1,-2020.87 1206.04,-2010.73 1202.1,-2020.56 1209.1,-2020.87"/> | |
| </a> | |
| </g> | |
| <g id="a_edge79-label"><a xlink:title="blink::scheduler::internal::TaskQueueImpl::OnTaskCompleted ... blink::scheduler::TaskQueueThrottler::IsThrottled (0.04s)"> | |
| <text text-anchor="middle" x="1222.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50 --> | |
| <g id="node50" class="node"><title>N50</title> | |
| <g id="a_node50"><a xlink:title="blink::FrameFetchContext::PrepareRequest (0.13s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="974,-1144 877,-1144 877,-1081 974,-1081 974,-1144"/> | |
| <text text-anchor="middle" x="925.5" y="-1132" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="925.5" y="-1121" font-family="Times,serif" font-size="10.00">FrameFetchContext</text> | |
| <text text-anchor="middle" x="925.5" y="-1110" font-family="Times,serif" font-size="10.00">PrepareRequest</text> | |
| <text text-anchor="middle" x="925.5" y="-1099" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="925.5" y="-1088" font-family="Times,serif" font-size="10.00">of 0.13s (1.48%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62 --> | |
| <g id="node62" class="node"><title>N62</title> | |
| <g id="a_node62"><a xlink:title="blink::LocalFrameClientImpl::DispatchWillSendRequest (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="976,-1020.5 875,-1020.5 875,-976.5 976,-976.5 976,-1020.5"/> | |
| <text text-anchor="middle" x="925.5" y="-1010.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="925.5" y="-1001.1" font-family="Times,serif" font-size="8.00">LocalFrameClientImpl</text> | |
| <text text-anchor="middle" x="925.5" y="-992.1" font-family="Times,serif" font-size="8.00">DispatchWillSendRequest</text> | |
| <text text-anchor="middle" x="925.5" y="-983.1" font-family="Times,serif" font-size="8.00">0 of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N62 --> | |
| <g id="edge55" class="edge"><title>N50->N62</title> | |
| <g id="a_edge55"><a xlink:title="blink::FrameFetchContext::PrepareRequest -> blink::LocalFrameClientImpl::DispatchWillSendRequest (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" d="M925.5,-1080.9C925.5,-1065.32 925.5,-1046.42 925.5,-1030.75"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="929,-1030.5 925.5,-1020.5 922,-1030.5 929,-1030.5"/> | |
| </a> | |
| </g> | |
| <g id="a_edge55-label"><a xlink:title="blink::FrameFetchContext::PrepareRequest -> blink::LocalFrameClientImpl::DispatchWillSendRequest (0.11s)"> | |
| <text text-anchor="middle" x="942.5" y="-1051.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N14 --> | |
| <g id="edge85" class="edge"><title>N51->N14</title> | |
| <g id="a_edge85"><a xlink:title="blink::ResourceFetcher::PrepareRequest ... blink::KURL::Init (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M875.181,-1218.81C871.741,-1172.05 860.358,-1057.02 827.5,-967 822.194,-952.463 814.267,-937.814 805.999,-924.68"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="808.926,-922.76 800.541,-916.284 803.057,-926.575 808.926,-922.76"/> | |
| </a> | |
| </g> | |
| <g id="a_edge85-label"><a xlink:title="blink::ResourceFetcher::PrepareRequest ... blink::KURL::Init (0.01s)"> | |
| <text text-anchor="middle" x="871.5" y="-1051.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N50 --> | |
| <g id="edge52" class="edge"><title>N51->N50</title> | |
| <g id="a_edge52"><a xlink:title="blink::ResourceFetcher::PrepareRequest -> blink::FrameFetchContext::PrepareRequest (0.13s)"> | |
| <path fill="none" stroke="#b2aea5" d="M884.701,-1218.83C891.553,-1201.14 901.517,-1175.42 909.883,-1153.82"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="913.249,-1154.82 913.597,-1144.23 906.721,-1152.29 913.249,-1154.82"/> | |
| </a> | |
| </g> | |
| <g id="a_edge52-label"><a xlink:title="blink::ResourceFetcher::PrepareRequest -> blink::FrameFetchContext::PrepareRequest (0.13s)"> | |
| <text text-anchor="middle" x="922.5" y="-1165.8" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N37 --> | |
| <g id="edge84" class="edge"><title>N53->N37</title> | |
| <g id="a_edge84"><a xlink:title="blink::(anonymous namespace)::IdleTaskRunner::Run ... blink::ScriptModule::~ScriptModule (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1093.53,-1949.92C1096.91,-1932.75 1101.42,-1909.84 1105.19,-1890.66"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1108.65,-1891.22 1107.14,-1880.74 1101.78,-1889.87 1108.65,-1891.22"/> | |
| </a> | |
| </g> | |
| <g id="a_edge84-label"><a xlink:title="blink::(anonymous namespace)::IdleTaskRunner::Run ... blink::ScriptModule::~ScriptModule (0.01s)"> | |
| <text text-anchor="middle" x="1120.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57 --> | |
| <g id="node57" class="node"><title>N57</title> | |
| <g id="a_node57"><a xlink:title="blink::BaseArena::LazySweepWithDeadline (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1272.5,-1874.5 1172.5,-1874.5 1172.5,-1830.5 1272.5,-1830.5 1272.5,-1874.5"/> | |
| <text text-anchor="middle" x="1222.5" y="-1864.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1222.5" y="-1855.1" font-family="Times,serif" font-size="8.00">BaseArena</text> | |
| <text text-anchor="middle" x="1222.5" y="-1846.1" font-family="Times,serif" font-size="8.00">LazySweepWithDeadline</text> | |
| <text text-anchor="middle" x="1222.5" y="-1837.1" font-family="Times,serif" font-size="8.00">0 of 0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N57 --> | |
| <g id="edge75" class="edge"><title>N53->N57</title> | |
| <g id="a_edge75"><a xlink:title="blink::(anonymous namespace)::IdleTaskRunner::Run ... blink::BaseArena::LazySweepWithDeadline (0.04s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1116.59,-1949.92C1138.56,-1929.92 1169.07,-1902.15 1191.7,-1881.54"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1194.31,-1883.9 1199.35,-1874.58 1189.6,-1878.72 1194.31,-1883.9"/> | |
| </a> | |
| </g> | |
| <g id="a_edge75-label"><a xlink:title="blink::(anonymous namespace)::IdleTaskRunner::Run ... blink::BaseArena::LazySweepWithDeadline (0.04s)"> | |
| <text text-anchor="middle" x="1185.5" y="-1905.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54 --> | |
| <g id="node54" class="node"><title>N54</title> | |
| <g id="a_node54"><a xlink:title="blink::NormalPage::Sweep (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1264,-1770 1181,-1770 1181,-1707 1264,-1707 1264,-1770"/> | |
| <text text-anchor="middle" x="1222.5" y="-1758" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="1222.5" y="-1747" font-family="Times,serif" font-size="10.00">NormalPage</text> | |
| <text text-anchor="middle" x="1222.5" y="-1736" font-family="Times,serif" font-size="10.00">Sweep</text> | |
| <text text-anchor="middle" x="1222.5" y="-1725" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="1222.5" y="-1714" font-family="Times,serif" font-size="10.00">of 0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55 --> | |
| <g id="node55" class="node"><title>N55</title> | |
| <g id="a_node55"><a xlink:title="blink::SharedBuffer::Create (0.04s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="639,-1656 556,-1656 556,-1593 639,-1593 639,-1656"/> | |
| <text text-anchor="middle" x="597.5" y="-1644" font-family="Times,serif" font-size="10.00">blink</text> | |
| <text text-anchor="middle" x="597.5" y="-1633" font-family="Times,serif" font-size="10.00">SharedBuffer</text> | |
| <text text-anchor="middle" x="597.5" y="-1622" font-family="Times,serif" font-size="10.00">Create</text> | |
| <text text-anchor="middle" x="597.5" y="-1611" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text> | |
| <text text-anchor="middle" x="597.5" y="-1600" font-family="Times,serif" font-size="10.00">of 0.04s (0.46%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57->N54 --> | |
| <g id="edge76" class="edge"><title>N57->N54</title> | |
| <g id="a_edge76"><a xlink:title="blink::BaseArena::LazySweepWithDeadline -> blink::NormalPage::Sweep (0.04s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M1222.5,-1830.43C1222.5,-1816.37 1222.5,-1797.41 1222.5,-1780.45"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1226,-1780.2 1222.5,-1770.2 1219,-1780.2 1226,-1780.2"/> | |
| </a> | |
| </g> | |
| <g id="a_edge76-label"><a xlink:title="blink::BaseArena::LazySweepWithDeadline -> blink::NormalPage::Sweep (0.04s)"> | |
| <text text-anchor="middle" x="1239.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58 --> | |
| <g id="node58" class="node"><title>N58</title> | |
| <g id="a_node58"><a xlink:title="blink::DocumentModuleScriptFetcher::Fetch (1.28s)"> | |
| <polygon fill="#ede3db" stroke="#b26930" points="955.5,-1530 837.5,-1530 837.5,-1486 955.5,-1486 955.5,-1530"/> | |
| <text text-anchor="middle" x="896.5" y="-1519.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="896.5" y="-1510.6" font-family="Times,serif" font-size="8.00">DocumentModuleScriptFetcher</text> | |
| <text text-anchor="middle" x="896.5" y="-1501.6" font-family="Times,serif" font-size="8.00">Fetch</text> | |
| <text text-anchor="middle" x="896.5" y="-1492.6" font-family="Times,serif" font-size="8.00">0 of 1.28s (14.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58->N8 --> | |
| <g id="edge21" class="edge"><title>N58->N8</title> | |
| <g id="a_edge21"><a xlink:title="blink::DocumentModuleScriptFetcher::Fetch ... blink::ResourceFetcher::RequestResource (1.28s)"> | |
| <path fill="none" stroke="#b26930" stroke-dasharray="1,5" d="M896.5,-1485.99C896.5,-1465.99 896.5,-1435.64 896.5,-1412.79"/> | |
| <polygon fill="#b26930" stroke="#b26930" points="900,-1412.57 896.5,-1402.57 893,-1412.57 900,-1412.57"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="blink::DocumentModuleScriptFetcher::Fetch ... blink::ResourceFetcher::RequestResource (1.28s)"> | |
| <text text-anchor="middle" x="913.5" y="-1444.8" font-family="Times,serif" font-size="14.00"> 1.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N33 --> | |
| <g id="edge35" class="edge"><title>N59->N33</title> | |
| <g id="a_edge35"><a xlink:title="blink::FrameFetchContext::CreateURLLoader ... content::RenderFrameImpl::UpdatePeakMemoryStats (0.36s)"> | |
| <path fill="none" stroke="#b2a48d" stroke-dasharray="1,5" d="M1032.5,-976.234C1030.21,-960.009 1026.99,-937.174 1024.21,-917.499"/> | |
| <polygon fill="#b2a48d" stroke="#b2a48d" points="1027.67,-916.963 1022.81,-907.55 1020.74,-917.941 1027.67,-916.963"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="blink::FrameFetchContext::CreateURLLoader ... content::RenderFrameImpl::UpdatePeakMemoryStats (0.36s)"> | |
| <text text-anchor="middle" x="1046.5" y="-937.8" font-family="Times,serif" font-size="14.00"> 0.36s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61 --> | |
| <g id="node61" class="node"><title>N61</title> | |
| <g id="a_node61"><a xlink:title="blink::LocalFrameClientImpl::DidRunContentWithCertificateErrors (0.12s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="183.5,-1646.5 45.5,-1646.5 45.5,-1602.5 183.5,-1602.5 183.5,-1646.5"/> | |
| <text text-anchor="middle" x="114.5" y="-1636.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="114.5" y="-1627.1" font-family="Times,serif" font-size="8.00">LocalFrameClientImpl</text> | |
| <text text-anchor="middle" x="114.5" y="-1618.1" font-family="Times,serif" font-size="8.00">DidRunContentWithCertificateErrors</text> | |
| <text text-anchor="middle" x="114.5" y="-1609.1" font-family="Times,serif" font-size="8.00">0 of 0.12s (1.37%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60->N61 --> | |
| <g id="edge53" class="edge"><title>N60->N61</title> | |
| <g id="a_edge53"><a xlink:title="blink::FrameFetchContext::DispatchDidReceiveResponse -> blink::LocalFrameClientImpl::DidRunContentWithCertificateErrors (0.12s)"> | |
| <path fill="none" stroke="#b2afa6" d="M138.045,-1716.43C133.678,-1699.57 127.489,-1675.66 122.552,-1656.6"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="125.924,-1655.66 120.029,-1646.85 119.147,-1657.41 125.924,-1655.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge53-label"><a xlink:title="blink::FrameFetchContext::DispatchDidReceiveResponse -> blink::LocalFrameClientImpl::DidRunContentWithCertificateErrors (0.12s)"> | |
| <text text-anchor="middle" x="148.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61->N24 --> | |
| <g id="edge54" class="edge"><title>N61->N24</title> | |
| <g id="a_edge54"><a xlink:title="blink::LocalFrameClientImpl::DidRunContentWithCertificateErrors -> content::RenderFrameImpl::DidRunContentWithCertificateErrors (0.12s)"> | |
| <path fill="none" stroke="#b2afa6" d="M113.583,-1602.5C112.947,-1587.93 112.078,-1568.03 111.305,-1550.34"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="114.797,-1550.07 110.864,-1540.24 107.804,-1550.38 114.797,-1550.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge54-label"><a xlink:title="blink::LocalFrameClientImpl::DidRunContentWithCertificateErrors -> content::RenderFrameImpl::DidRunContentWithCertificateErrors (0.12s)"> | |
| <text text-anchor="middle" x="129.5" y="-1563.8" font-family="Times,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62->N30 --> | |
| <g id="edge56" class="edge"><title>N62->N30</title> | |
| <g id="a_edge56"><a xlink:title="blink::LocalFrameClientImpl::DispatchWillSendRequest -> content::RenderFrameImpl::WillSendRequest (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" d="M919.5,-976.234C915.117,-960.7 909.024,-939.106 903.64,-920.027"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="906.987,-918.999 900.903,-910.325 900.25,-920.899 906.987,-918.999"/> | |
| </a> | |
| </g> | |
| <g id="a_edge56-label"><a xlink:title="blink::LocalFrameClientImpl::DispatchWillSendRequest -> content::RenderFrameImpl::WillSendRequest (0.11s)"> | |
| <text text-anchor="middle" x="929.5" y="-937.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63 --> | |
| <g id="node63" class="node"><title>N63</title> | |
| <g id="a_node63"><a xlink:title="blink::ModulatorImplBase::ExecuteModule (0.31s)"> | |
| <polygon fill="#edebe8" stroke="#b2a692" points="1055.5,-1646.5 975.5,-1646.5 975.5,-1602.5 1055.5,-1602.5 1055.5,-1646.5"/> | |
| <text text-anchor="middle" x="1015.5" y="-1636.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1015.5" y="-1627.1" font-family="Times,serif" font-size="8.00">ModulatorImplBase</text> | |
| <text text-anchor="middle" x="1015.5" y="-1618.1" font-family="Times,serif" font-size="8.00">ExecuteModule</text> | |
| <text text-anchor="middle" x="1015.5" y="-1609.1" font-family="Times,serif" font-size="8.00">0 of 0.31s (3.54%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80 --> | |
| <g id="node80" class="node"><title>N80</title> | |
| <g id="a_node80"><a xlink:title="blink::ScriptModule::Evaluate (0.31s)"> | |
| <polygon fill="#edebe8" stroke="#b2a692" points="1054,-1530 977,-1530 977,-1486 1054,-1486 1054,-1530"/> | |
| <text text-anchor="middle" x="1015.5" y="-1519.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1015.5" y="-1510.6" font-family="Times,serif" font-size="8.00">ScriptModule</text> | |
| <text text-anchor="middle" x="1015.5" y="-1501.6" font-family="Times,serif" font-size="8.00">Evaluate</text> | |
| <text text-anchor="middle" x="1015.5" y="-1492.6" font-family="Times,serif" font-size="8.00">0 of 0.31s (3.54%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63->N80 --> | |
| <g id="edge40" class="edge"><title>N63->N80</title> | |
| <g id="a_edge40"><a xlink:title="blink::ModulatorImplBase::ExecuteModule -> blink::ScriptModule::Evaluate (0.31s)"> | |
| <path fill="none" stroke="#b2a692" d="M1015.5,-1602.5C1015.5,-1585.1 1015.5,-1560.1 1015.5,-1540.33"/> | |
| <polygon fill="#b2a692" stroke="#b2a692" points="1019,-1540.26 1015.5,-1530.26 1012,-1540.26 1019,-1540.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge40-label"><a xlink:title="blink::ModulatorImplBase::ExecuteModule -> blink::ScriptModule::Evaluate (0.31s)"> | |
| <text text-anchor="middle" x="1032.5" y="-1563.8" font-family="Times,serif" font-size="14.00"> 0.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64 --> | |
| <g id="node64" class="node"><title>N64</title> | |
| <g id="a_node64"><a xlink:title="blink::ModulatorImplBase::InstantiateModule (0.11s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="820.5,-1760.5 740.5,-1760.5 740.5,-1716.5 820.5,-1716.5 820.5,-1760.5"/> | |
| <text text-anchor="middle" x="780.5" y="-1750.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="780.5" y="-1741.1" font-family="Times,serif" font-size="8.00">ModulatorImplBase</text> | |
| <text text-anchor="middle" x="780.5" y="-1732.1" font-family="Times,serif" font-size="8.00">InstantiateModule</text> | |
| <text text-anchor="middle" x="780.5" y="-1723.1" font-family="Times,serif" font-size="8.00">0 of 0.11s (1.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64->N38 --> | |
| <g id="edge57" class="edge"><title>N64->N38</title> | |
| <g id="a_edge57"><a xlink:title="blink::ModulatorImplBase::InstantiateModule -> blink::ScriptModule::Instantiate (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" d="M780.688,-1716.43C780.814,-1702.37 780.983,-1683.41 781.134,-1666.45"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="784.636,-1666.23 781.226,-1656.2 777.637,-1666.17 784.636,-1666.23"/> | |
| </a> | |
| </g> | |
| <g id="a_edge57-label"><a xlink:title="blink::ModulatorImplBase::InstantiateModule -> blink::ScriptModule::Instantiate (0.11s)"> | |
| <text text-anchor="middle" x="798.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65 --> | |
| <g id="node65" class="node"><title>N65</title> | |
| <g id="a_node65"><a xlink:title="blink::ModuleScript::RunScript (0.31s)"> | |
| <polygon fill="#edebe8" stroke="#b2a692" points="1054,-1760.5 977,-1760.5 977,-1716.5 1054,-1716.5 1054,-1760.5"/> | |
| <text text-anchor="middle" x="1015.5" y="-1750.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1015.5" y="-1741.1" font-family="Times,serif" font-size="8.00">ModuleScript</text> | |
| <text text-anchor="middle" x="1015.5" y="-1732.1" font-family="Times,serif" font-size="8.00">RunScript</text> | |
| <text text-anchor="middle" x="1015.5" y="-1723.1" font-family="Times,serif" font-size="8.00">0 of 0.31s (3.54%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65->N63 --> | |
| <g id="edge41" class="edge"><title>N65->N63</title> | |
| <g id="a_edge41"><a xlink:title="blink::ModuleScript::RunScript -> blink::ModulatorImplBase::ExecuteModule (0.31s)"> | |
| <path fill="none" stroke="#b2a692" d="M1015.5,-1716.43C1015.5,-1699.65 1015.5,-1675.88 1015.5,-1656.86"/> | |
| <polygon fill="#b2a692" stroke="#b2a692" points="1019,-1656.85 1015.5,-1646.85 1012,-1656.85 1019,-1656.85"/> | |
| </a> | |
| </g> | |
| <g id="a_edge41-label"><a xlink:title="blink::ModuleScript::RunScript -> blink::ModulatorImplBase::ExecuteModule (0.31s)"> | |
| <text text-anchor="middle" x="1032.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 0.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66 --> | |
| <g id="node66" class="node"><title>N66</title> | |
| <g id="a_node66"><a xlink:title="blink::ModuleScriptLoader::Fetch (1.29s)"> | |
| <polygon fill="#ede3db" stroke="#b2682f" points="938,-1646.5 855,-1646.5 855,-1602.5 938,-1602.5 938,-1646.5"/> | |
| <text text-anchor="middle" x="896.5" y="-1636.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="896.5" y="-1627.1" font-family="Times,serif" font-size="8.00">ModuleScriptLoader</text> | |
| <text text-anchor="middle" x="896.5" y="-1618.1" font-family="Times,serif" font-size="8.00">Fetch</text> | |
| <text text-anchor="middle" x="896.5" y="-1609.1" font-family="Times,serif" font-size="8.00">0 of 1.29s (14.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66->N58 --> | |
| <g id="edge22" class="edge"><title>N66->N58</title> | |
| <g id="a_edge22"><a xlink:title="blink::ModuleScriptLoader::Fetch -> blink::DocumentModuleScriptFetcher::Fetch (1.28s)"> | |
| <path fill="none" stroke="#b26930" d="M896.5,-1602.5C896.5,-1585.1 896.5,-1560.1 896.5,-1540.33"/> | |
| <polygon fill="#b26930" stroke="#b26930" points="900,-1540.26 896.5,-1530.26 893,-1540.26 900,-1540.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-label"><a xlink:title="blink::ModuleScriptLoader::Fetch -> blink::DocumentModuleScriptFetcher::Fetch (1.28s)"> | |
| <text text-anchor="middle" x="913.5" y="-1563.8" font-family="Times,serif" font-size="14.00"> 1.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67->N66 --> | |
| <g id="edge19" class="edge"><title>N67->N66</title> | |
| <g id="a_edge19"><a xlink:title="blink::ModuleScriptLoaderRegistry::Fetch -> blink::ModuleScriptLoader::Fetch (1.29s)"> | |
| <path fill="none" stroke="#b2682f" d="M896.5,-1716.43C896.5,-1699.65 896.5,-1675.88 896.5,-1656.86"/> | |
| <polygon fill="#b2682f" stroke="#b2682f" points="900,-1656.85 896.5,-1646.85 893,-1656.85 900,-1656.85"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-label"><a xlink:title="blink::ModuleScriptLoaderRegistry::Fetch -> blink::ModuleScriptLoader::Fetch (1.29s)"> | |
| <text text-anchor="middle" x="913.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 1.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68->N64 --> | |
| <g id="edge59" class="edge"><title>N68->N64</title> | |
| <g id="a_edge59"><a xlink:title="blink::ModuleTreeLinker::Instantiate -> blink::ModulatorImplBase::InstantiateModule (0.11s)"> | |
| <path fill="none" stroke="#b2afa7" d="M778.876,-1830.43C779.176,-1813.65 779.6,-1789.88 779.94,-1770.86"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="783.44,-1770.91 780.119,-1760.85 776.441,-1770.79 783.44,-1770.91"/> | |
| </a> | |
| </g> | |
| <g id="a_edge59-label"><a xlink:title="blink::ModuleTreeLinker::Instantiate -> blink::ModulatorImplBase::InstantiateModule (0.11s)"> | |
| <text text-anchor="middle" x="797.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69->N7 --> | |
| <g id="edge12" class="edge"><title>N69->N7</title> | |
| <g id="a_edge12"><a xlink:title="blink::ModuleTreeLinker::NotifyModuleLoadFinished -> blink::ModuleTreeLinker::FetchDescendants (1.56s)"> | |
| <path fill="none" stroke="#b25313" d="M708.279,-2092.97C715.557,-2070.39 727.194,-2034.29 735.519,-2008.46"/> | |
| <polygon fill="#b25313" stroke="#b25313" points="738.904,-2009.37 738.641,-1998.78 732.242,-2007.22 738.904,-2009.37"/> | |
| </a> | |
| </g> | |
| <g id="a_edge12-label"><a xlink:title="blink::ModuleTreeLinker::NotifyModuleLoadFinished -> blink::ModuleTreeLinker::FetchDescendants (1.56s)"> | |
| <text text-anchor="middle" x="743.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 1.56s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70 --> | |
| <g id="node70" class="node"><title>N70</title> | |
| <g id="a_node70"><a xlink:title="blink::Resource::AppendData (0.07s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="634,-1760.5 561,-1760.5 561,-1716.5 634,-1716.5 634,-1760.5"/> | |
| <text text-anchor="middle" x="597.5" y="-1750.1" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="597.5" y="-1741.1" font-family="Times,serif" font-size="8.00">Resource</text> | |
| <text text-anchor="middle" x="597.5" y="-1732.1" font-family="Times,serif" font-size="8.00">AppendData</text> | |
| <text text-anchor="middle" x="597.5" y="-1723.1" font-family="Times,serif" font-size="8.00">0 of 0.07s (0.8%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70->N55 --> | |
| <g id="edge77" class="edge"><title>N70->N55</title> | |
| <g id="a_edge77"><a xlink:title="blink::Resource::AppendData -> blink::SharedBuffer::Create (0.04s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M597.5,-1716.43C597.5,-1702.37 597.5,-1683.41 597.5,-1666.45"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="601,-1666.2 597.5,-1656.2 594,-1666.2 601,-1666.2"/> | |
| </a> | |
| </g> | |
| <g id="a_edge77-label"><a xlink:title="blink::Resource::AppendData -> blink::SharedBuffer::Create (0.04s)"> | |
| <text text-anchor="middle" x="614.5" y="-1677.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71->N9 --> | |
| <g id="edge24" class="edge"><title>N71->N9</title> | |
| <g id="a_edge24"><a xlink:title="blink::ResourceFetcher::StartLoad -> blink::ResourceLoader::Start (1.05s)"> | |
| <path fill="none" stroke="#b27947" d="M1097.5,-1218.83C1097.5,-1198.67 1097.5,-1168.07 1097.5,-1145.04"/> | |
| <polygon fill="#b27947" stroke="#b27947" points="1101,-1144.74 1097.5,-1134.74 1094,-1144.74 1101,-1144.74"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="blink::ResourceFetcher::StartLoad -> blink::ResourceLoader::Start (1.05s)"> | |
| <text text-anchor="middle" x="1114.5" y="-1165.8" font-family="Times,serif" font-size="14.00"> 1.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72 --> | |
| <g id="node72" class="node"><title>N72</title> | |
| <g id="a_node72"><a xlink:title="blink::ResourceLoadScheduler::MaybeRun (0.67s)"> | |
| <polygon fill="#ede8e4" stroke="#b2926e" points="1192,-898 1097,-898 1097,-854 1192,-854 1192,-898"/> | |
| <text text-anchor="middle" x="1144.5" y="-887.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1144.5" y="-878.6" font-family="Times,serif" font-size="8.00">ResourceLoadScheduler</text> | |
| <text text-anchor="middle" x="1144.5" y="-869.6" font-family="Times,serif" font-size="8.00">MaybeRun</text> | |
| <text text-anchor="middle" x="1144.5" y="-860.6" font-family="Times,serif" font-size="8.00">0 of 0.67s (7.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76 --> | |
| <g id="node76" class="node"><title>N76</title> | |
| <g id="a_node76"><a xlink:title="blink::ResourceLoader::StartWith (0.67s)"> | |
| <polygon fill="#ede8e4" stroke="#b2926e" points="1183,-738 1106,-738 1106,-694 1183,-694 1183,-738"/> | |
| <text text-anchor="middle" x="1144.5" y="-727.6" font-family="Times,serif" font-size="8.00">blink</text> | |
| <text text-anchor="middle" x="1144.5" y="-718.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1144.5" y="-709.6" font-family="Times,serif" font-size="8.00">StartWith</text> | |
| <text text-anchor="middle" x="1144.5" y="-700.6" font-family="Times,serif" font-size="8.00">0 of 0.67s (7.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72->N76 --> | |
| <g id="edge27" class="edge"><title>N72->N76</title> | |
| <g id="a_edge27"><a xlink:title="blink::ResourceLoadScheduler::MaybeRun -> blink::ResourceLoader::StartWith (0.67s)"> | |
| <path fill="none" stroke="#b2926e" d="M1144.5,-853.691C1144.5,-826.641 1144.5,-779.749 1144.5,-748.547"/> | |
| <polygon fill="#b2926e" stroke="#b2926e" points="1148,-748.223 1144.5,-738.223 1141,-748.223 1148,-748.223"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-label"><a xlink:title="blink::ResourceLoadScheduler::MaybeRun -> blink::ResourceLoader::StartWith (0.67s)"> | |
| <text text-anchor="middle" x="1161.5" y="-806.8" font-family="Times,serif" font-size="14.00"> 0.67s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73->N72 --> | |
| <g id="edge28" class="edge"><title>N73->N72</title> | |
| <g id="a_edge28"><a xlink:title="blink::ResourceLoadScheduler::Request -> blink::ResourceLoadScheduler::MaybeRun (0.67s)"> | |
| <path fill="none" stroke="#b2926e" d="M1143.68,-976.234C1143.83,-957.392 1144.06,-929.634 1144.24,-908.264"/> | |
| <polygon fill="#b2926e" stroke="#b2926e" points="1147.74,-908.082 1144.33,-898.053 1140.74,-908.024 1147.74,-908.082"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-label"><a xlink:title="blink::ResourceLoadScheduler::Request -> blink::ResourceLoadScheduler::MaybeRun (0.67s)"> | |
| <text text-anchor="middle" x="1161.5" y="-937.8" font-family="Times,serif" font-size="14.00"> 0.67s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74->N28 --> | |
| <g id="edge61" class="edge"><title>N74->N28</title> | |
| <g id="a_edge61"><a xlink:title="blink::ResourceLoader::DidFinishLoading ... content::ResourceDispatcher::RemovePendingRequest (0.10s)"> | |
| <path fill="none" stroke="#b2afa8" stroke-dasharray="1,5" d="M502.801,-1602.5C505.024,-1588.36 508.035,-1569.21 510.753,-1551.92"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="514.215,-1552.43 512.311,-1542.01 507.3,-1551.34 514.215,-1552.43"/> | |
| </a> | |
| </g> | |
| <g id="a_edge61-label"><a xlink:title="blink::ResourceLoader::DidFinishLoading ... content::ResourceDispatcher::RemovePendingRequest (0.10s)"> | |
| <text text-anchor="middle" x="526.5" y="-1563.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75->N70 --> | |
| <g id="edge68" class="edge"><title>N75->N70</title> | |
| <g id="a_edge68"><a xlink:title="blink::ResourceLoader::DidReceiveData ... blink::Resource::AppendData (0.07s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M596.688,-1830.43C596.838,-1813.65 597.05,-1789.88 597.22,-1770.86"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="600.72,-1770.88 597.309,-1760.85 593.72,-1770.82 600.72,-1770.88"/> | |
| </a> | |
| </g> | |
| <g id="a_edge68-label"><a xlink:title="blink::ResourceLoader::DidReceiveData ... blink::Resource::AppendData (0.07s)"> | |
| <text text-anchor="middle" x="614.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76->N45 --> | |
| <g id="edge30" class="edge"><title>N76->N45</title> | |
| <g id="a_edge30"><a xlink:title="blink::ResourceLoader::StartWith -> content::WebURLLoaderImpl::LoadAsynchronously (0.67s)"> | |
| <path fill="none" stroke="#b2926e" d="M1144.5,-693.865C1144.5,-670.689 1144.5,-632.939 1144.5,-603.925"/> | |
| <polygon fill="#b2926e" stroke="#b2926e" points="1148,-603.674 1144.5,-593.674 1141,-603.674 1148,-603.674"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="blink::ResourceLoader::StartWith -> content::WebURLLoaderImpl::LoadAsynchronously (0.67s)"> | |
| <text text-anchor="middle" x="1161.5" y="-617.8" font-family="Times,serif" font-size="14.00"> 0.67s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77->N65 --> | |
| <g id="edge42" class="edge"><title>N77->N65</title> | |
| <g id="a_edge42"><a xlink:title="blink::ScriptLoader::DoExecuteScript -> blink::ModuleScript::RunScript (0.31s)"> | |
| <path fill="none" stroke="#b2a692" d="M1014.69,-1830.43C1014.84,-1813.65 1015.05,-1789.88 1015.22,-1770.86"/> | |
| <polygon fill="#b2a692" stroke="#b2a692" points="1018.72,-1770.88 1015.31,-1760.85 1011.72,-1770.82 1018.72,-1770.88"/> | |
| </a> | |
| </g> | |
| <g id="a_edge42-label"><a xlink:title="blink::ScriptLoader::DoExecuteScript -> blink::ModuleScript::RunScript (0.31s)"> | |
| <text text-anchor="middle" x="1032.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 0.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78->N32 --> | |
| <g id="edge37" class="edge"><title>N78->N32</title> | |
| <g id="a_edge37"><a xlink:title="blink::ScriptLoader::Execute -> blink::ScriptLoader::ExecuteScriptBlock (0.33s)"> | |
| <path fill="none" stroke="#b2a590" d="M826.83,-2092.97C844.752,-2069.89 873.646,-2032.68 893.774,-2006.76"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="896.608,-2008.82 899.977,-1998.78 891.079,-2004.53 896.608,-2008.82"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="blink::ScriptLoader::Execute -> blink::ScriptLoader::ExecuteScriptBlock (0.33s)"> | |
| <text text-anchor="middle" x="887.5" y="-2039.8" font-family="Times,serif" font-size="14.00"> 0.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79->N3 --> | |
| <g id="edge15" class="edge"><title>N79->N3</title> | |
| <g id="a_edge15"><a xlink:title="blink::ScriptModule::Compile -> blink::V8ScriptRunner::CompileModule (1.55s)"> | |
| <path fill="none" stroke="#b25414" d="M339.5,-853.691C339.5,-838.421 339.5,-816.827 339.5,-795.302"/> | |
| <polygon fill="#b25414" stroke="#b25414" points="343,-795.106 339.5,-785.106 336,-795.106 343,-795.106"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="blink::ScriptModule::Compile -> blink::V8ScriptRunner::CompileModule (1.55s)"> | |
| <text text-anchor="middle" x="356.5" y="-806.8" font-family="Times,serif" font-size="14.00"> 1.55s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80->N15 --> | |
| <g id="edge43" class="edge"><title>N80->N15</title> | |
| <g id="a_edge43"><a xlink:title="blink::ScriptModule::Evaluate -> blink::V8ScriptRunner::EvaluateModule (0.31s)"> | |
| <path fill="none" stroke="#b2a692" d="M1015.5,-1485.99C1015.5,-1470.91 1015.5,-1449.94 1015.5,-1430.74"/> | |
| <polygon fill="#b2a692" stroke="#b2a692" points="1019,-1430.6 1015.5,-1420.6 1012,-1430.6 1019,-1430.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge43-label"><a xlink:title="blink::ScriptModule::Evaluate -> blink::V8ScriptRunner::EvaluateModule (0.31s)"> | |
| <text text-anchor="middle" x="1032.5" y="-1444.8" font-family="Times,serif" font-size="14.00"> 0.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| </g> | |
| </g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment