Skip to content

Instantly share code, notes, and snippets.

@irori
Last active January 18, 2018 05:07
Show Gist options
  • Select an option

  • Save irori/25d6cac337e0c47d749886f0c72635e9 to your computer and use it in GitHub Desktop.

Select an option

Save irori/25d6cac337e0c47d749886f0c72635e9 to your computer and use it in GitHub Desktop.
pprof results of module loading
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?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 3275)">
<title>chrome</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-3275 1313,-3275 1313,4 -4,4"/>
<g id="clust1" class="cluster"><title>cluster_L</title>
<polygon fill="none" stroke="black" points="713.5,-3095 713.5,-3263 1125.5,-3263 1125.5,-3095 713.5,-3095"/>
</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="1117.5,-3255 721.5,-3255 721.5,-3103 1117.5,-3103 1117.5,-3255"/>
<text text-anchor="start" x="729.5" y="-3238.2" font-family="Times,serif" font-size="16.00">File: chrome</text>
<text text-anchor="start" x="729.5" y="-3220.2" font-family="Times,serif" font-size="16.00">Type: cpu</text>
<text text-anchor="start" x="729.5" y="-3202.2" font-family="Times,serif" font-size="16.00">Active filters:</text>
<text text-anchor="start" x="729.5" y="-3184.2" font-family="Times,serif" font-size="16.00"> &#160;&#160;focus=ResourceDispatcher::OnRequestComplete</text>
<text text-anchor="start" x="729.5" y="-3166.2" font-family="Times,serif" font-size="16.00"> &#160;&#160;hide=v8::internal</text>
<text text-anchor="start" x="729.5" y="-3148.2" font-family="Times,serif" font-size="16.00">Showing nodes accounting for 1.80s, 20.55% of 8.76s total</text>
<text text-anchor="start" x="729.5" y="-3130.2" font-family="Times,serif" font-size="16.00">Dropped 67 nodes (cum &lt;= 0.04s)</text>
<text text-anchor="start" x="729.5" y="-3112.2" font-family="Times,serif" font-size="16.00">Showing top 80 nodes out of 87</text>
</a>
</g>
</g>
<!-- N1 -->
<g id="node1" class="node"><title>N1</title>
<g id="a_node1"><a xlink:title="base::debug::TaskAnnotator::RunTask (2.05s)">
<polygon fill="#edddd5" stroke="#b23f00" points="1215.5,-2229 1135.5,-2229 1135.5,-2176 1215.5,-2176 1215.5,-2229"/>
<text text-anchor="middle" x="1175.5" y="-2218.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="1175.5" y="-2209.6" font-family="Times,serif" font-size="8.00">debug</text>
<text text-anchor="middle" x="1175.5" y="-2200.6" font-family="Times,serif" font-size="8.00">TaskAnnotator</text>
<text text-anchor="middle" x="1175.5" y="-2191.6" font-family="Times,serif" font-size="8.00">RunTask</text>
<text text-anchor="middle" x="1175.5" y="-2182.6" font-family="Times,serif" font-size="8.00">0 of 2.05s (23.40%)</text>
</a>
</g>
</g>
<!-- N4 -->
<g id="node4" class="node"><title>N4</title>
<g id="a_node4"><a xlink:title="mojo::SimpleWatcher::OnHandleReady (2.06s)">
<polygon fill="#edddd5" stroke="#b23e00" points="1116.5,-2120.5 1036.5,-2120.5 1036.5,-2076.5 1116.5,-2076.5 1116.5,-2120.5"/>
<text text-anchor="middle" x="1076.5" y="-2110.1" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="1076.5" y="-2101.1" font-family="Times,serif" font-size="8.00">SimpleWatcher</text>
<text text-anchor="middle" x="1076.5" y="-2092.1" font-family="Times,serif" font-size="8.00">OnHandleReady</text>
<text text-anchor="middle" x="1076.5" y="-2083.1" font-family="Times,serif" font-size="8.00">0 of 2.06s (23.52%)</text>
</a>
</g>
</g>
<!-- N1&#45;&gt;N4 -->
<g id="edge2" class="edge"><title>N1&#45;&gt;N4</title>
<g id="a_edge2"><a xlink:title="base::debug::TaskAnnotator::RunTask &#45;&gt; mojo::SimpleWatcher::OnHandleReady (2.05s)">
<path fill="none" stroke="#b23f00" stroke-width="2" d="M1150.52,-2175.76C1136.47,-2161.29 1118.9,-2143.18 1104.4,-2128.24"/>
<polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="1106.61,-2125.5 1097.13,-2120.76 1101.59,-2130.37 1106.61,-2125.5"/>
</a>
</g>
<g id="a_edge2&#45;label"><a xlink:title="base::debug::TaskAnnotator::RunTask &#45;&gt; mojo::SimpleWatcher::OnHandleReady (2.05s)">
<text text-anchor="middle" x="1149.5" y="-2146.8" font-family="Times,serif" font-size="14.00"> 2.05s</text>
</a>
</g>
</g>
<!-- N62 -->
<g id="node62" class="node"><title>N62</title>
<g id="a_node62"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork (2.01s)">
<polygon fill="#edddd5" stroke="#b23f00" points="1216.5,-2125 1134.5,-2125 1134.5,-2072 1216.5,-2072 1216.5,-2125"/>
<text text-anchor="middle" x="1175.5" y="-2114.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1175.5" y="-2105.6" font-family="Times,serif" font-size="8.00">scheduler</text>
<text text-anchor="middle" x="1175.5" y="-2096.6" font-family="Times,serif" font-size="8.00">TaskQueueManager</text>
<text text-anchor="middle" x="1175.5" y="-2087.6" font-family="Times,serif" font-size="8.00">DoWork</text>
<text text-anchor="middle" x="1175.5" y="-2078.6" font-family="Times,serif" font-size="8.00">0 of 2.01s (22.95%)</text>
</a>
</g>
</g>
<!-- N1&#45;&gt;N62 -->
<g id="edge6" class="edge"><title>N1&#45;&gt;N62</title>
<g id="a_edge6"><a xlink:title="base::debug::TaskAnnotator::RunTask &#45;&gt; blink::scheduler::TaskQueueManager::DoWork (1.97s)">
<path fill="none" stroke="#b24000" stroke-width="2" d="M1175.5,-2175.76C1175.5,-2163.56 1175.5,-2148.78 1175.5,-2135.49"/>
<polygon fill="#b24000" stroke="#b24000" stroke-width="2" points="1179,-2135.23 1175.5,-2125.23 1172,-2135.23 1179,-2135.23"/>
</a>
</g>
<g id="a_edge6&#45;label"><a xlink:title="base::debug::TaskAnnotator::RunTask &#45;&gt; blink::scheduler::TaskQueueManager::DoWork (1.97s)">
<text text-anchor="middle" x="1192.5" y="-2146.8" font-family="Times,serif" font-size="14.00"> 1.97s</text>
</a>
</g>
</g>
<!-- N2 -->
<g id="node2" class="node"><title>N2</title>
<g id="a_node2"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal (1.47s)">
<polygon fill="#ede1d9" stroke="#b25a1c" points="1208,-470 945,-470 945,-332 1208,-332 1208,-470"/>
<text text-anchor="middle" x="1076.5" y="-446.8" font-family="Times,serif" font-size="24.00">v8</text>
<text text-anchor="middle" x="1076.5" y="-420.8" font-family="Times,serif" font-size="24.00">ScriptCompiler</text>
<text text-anchor="middle" x="1076.5" y="-394.8" font-family="Times,serif" font-size="24.00">CompileUnboundInternal</text>
<text text-anchor="middle" x="1076.5" y="-368.8" font-family="Times,serif" font-size="24.00">1.28s (14.61%)</text>
<text text-anchor="middle" x="1076.5" y="-342.8" font-family="Times,serif" font-size="24.00">of 1.47s (16.78%)</text>
</a>
</g>
</g>
<!-- N9 -->
<g id="node9" class="node"><title>N9</title>
<g id="a_node9"><a xlink:title="&lt;unknown&gt; (0.08s)">
<polygon fill="#edecec" stroke="#b2b0aa" points="683,-36 600,-36 600,-0 683,-0 683,-36"/>
<text text-anchor="middle" x="641.5" y="-21.4" font-family="Times,serif" font-size="12.00">&lt;unknown&gt;</text>
<text text-anchor="middle" x="641.5" y="-8.4" font-family="Times,serif" font-size="12.00">0.08s (0.91%)</text>
</a>
</g>
</g>
<!-- N2&#45;&gt;N9 -->
<g id="edge83" class="edge"><title>N2&#45;&gt;N9</title>
<g id="a_edge83"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; &lt;unknown&gt; (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M1003.84,-331.698C989.576,-315.968 975.612,-298.645 964.5,-281 915.24,-202.777 958.091,-148.973 889.5,-87 835.195,-37.9342 748.742,-23.8239 693.584,-20.0208"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="693.517,-16.5107 683.326,-19.4073 693.099,-23.4982 693.517,-16.5107"/>
</a>
</g>
<g id="a_edge83&#45;label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; &lt;unknown&gt; (0.02s)">
<text text-anchor="middle" x="952.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N22 -->
<g id="node22" class="node"><title>N22</title>
<g id="a_node22"><a xlink:title="v8::base::TemplateHashMapImpl::LookupOrInsert (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="1229.5,-281 1107.5,-281 1107.5,-201 1229.5,-201 1229.5,-281"/>
<text text-anchor="middle" x="1168.5" y="-268.2" font-family="Times,serif" font-size="11.00">v8</text>
<text text-anchor="middle" x="1168.5" y="-256.2" font-family="Times,serif" font-size="11.00">base</text>
<text text-anchor="middle" x="1168.5" y="-244.2" font-family="Times,serif" font-size="11.00">TemplateHashMapImpl</text>
<text text-anchor="middle" x="1168.5" y="-232.2" font-family="Times,serif" font-size="11.00">LookupOrInsert</text>
<text text-anchor="middle" x="1168.5" y="-220.2" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text>
<text text-anchor="middle" x="1168.5" y="-208.2" font-family="Times,serif" font-size="11.00">of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N2&#45;&gt;N22 -->
<g id="edge48" class="edge"><title>N2&#45;&gt;N22</title>
<g id="a_edge48"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; v8::base::TemplateHashMapImpl::LookupOrInsert (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M1116.32,-331.618C1124.45,-317.659 1132.84,-303.249 1140.45,-290.175"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="1143.57,-291.762 1145.58,-281.359 1137.53,-288.24 1143.57,-291.762"/>
</a>
</g>
<g id="a_edge48&#45;label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; v8::base::TemplateHashMapImpl::LookupOrInsert (0.06s)">
<text text-anchor="middle" x="1150.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N25 -->
<g id="node25" class="node"><title>N25</title>
<g id="a_node25"><a xlink:title="operator new (0.04s)">
<polygon fill="#ededec" stroke="#b2b1ae" points="592,-261.5 509,-261.5 509,-220.5 592,-220.5 592,-261.5"/>
<text text-anchor="middle" x="550.5" y="-249.5" font-family="Times,serif" font-size="10.00">operator new</text>
<text text-anchor="middle" x="550.5" y="-238.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="550.5" y="-227.5" font-family="Times,serif" font-size="10.00">of 0.04s (0.46%)</text>
</a>
</g>
</g>
<!-- N2&#45;&gt;N25 -->
<g id="edge63" class="edge"><title>N2&#45;&gt;N25</title>
<g id="a_edge63"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; operator new (0.03s)">
<path fill="none" stroke="#b2b1af" d="M944.856,-360.41C882.855,-341.769 807.881,-319.234 740.5,-299 693.57,-284.907 640.113,-268.872 601.883,-257.407"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="602.598,-253.967 592.014,-254.447 600.587,-260.672 602.598,-253.967"/>
</a>
</g>
<g id="a_edge63&#45;label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; operator new (0.03s)">
<text text-anchor="middle" x="803.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N38 -->
<g id="node38" class="node"><title>N38</title>
<g id="a_node38"><a xlink:title="(anonymous namespace)::do_free_with_callback (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="1089.5,-267 973.5,-267 973.5,-215 1089.5,-215 1089.5,-267"/>
<text text-anchor="middle" x="1031.5" y="-255" font-family="Times,serif" font-size="10.00">(anonymous namespace)</text>
<text text-anchor="middle" x="1031.5" y="-244" font-family="Times,serif" font-size="10.00">do_free_with_callback</text>
<text text-anchor="middle" x="1031.5" y="-233" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="1031.5" y="-222" font-family="Times,serif" font-size="10.00">of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N2&#45;&gt;N38 -->
<g id="edge62" class="edge"><title>N2&#45;&gt;N38</title>
<g id="a_edge62"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; (anonymous namespace)::do_free_with_callback (0.03s)">
<path fill="none" stroke="#b2b1af" d="M1057.02,-331.618C1051.69,-312.872 1046.11,-293.314 1041.55,-277.27"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="1044.8,-275.936 1038.7,-267.277 1038.07,-277.854 1044.8,-275.936"/>
</a>
</g>
<g id="a_edge62&#45;label"><a xlink:title="v8::ScriptCompiler::CompileUnboundInternal &#45;&gt; (anonymous namespace)::do_free_with_callback (0.03s)">
<text text-anchor="middle" x="1068.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N3 -->
<g id="node3" class="node"><title>N3</title>
<g id="a_node3"><a xlink:title="content::ResourceDispatcher::OnRequestComplete (2.11s)">
<polygon fill="#edddd5" stroke="#b23e00" points="1118,-1623 1035,-1623 1035,-1579 1118,-1579 1118,-1623"/>
<text text-anchor="middle" x="1076.5" y="-1612.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1076.5" y="-1603.6" font-family="Times,serif" font-size="8.00">ResourceDispatcher</text>
<text text-anchor="middle" x="1076.5" y="-1594.6" font-family="Times,serif" font-size="8.00">OnRequestComplete</text>
<text text-anchor="middle" x="1076.5" y="-1585.6" font-family="Times,serif" font-size="8.00">0 of 2.11s (24.09%)</text>
</a>
</g>
</g>
<!-- N8 -->
<g id="node8" class="node"><title>N8</title>
<g id="a_node8"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)">
<polygon fill="#edddd5" stroke="#b23e00" points="1119.5,-1528 1033.5,-1528 1033.5,-1475 1119.5,-1475 1119.5,-1528"/>
<text text-anchor="middle" x="1076.5" y="-1517.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1076.5" y="-1508.6" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text>
<text text-anchor="middle" x="1076.5" y="-1499.6" font-family="Times,serif" font-size="8.00">Context</text>
<text text-anchor="middle" x="1076.5" y="-1490.6" font-family="Times,serif" font-size="8.00">OnCompletedRequest</text>
<text text-anchor="middle" x="1076.5" y="-1481.6" font-family="Times,serif" font-size="8.00">0 of 2.11s (24.09%)</text>
</a>
</g>
</g>
<!-- N3&#45;&gt;N8 -->
<g id="edge1" class="edge"><title>N3&#45;&gt;N8</title>
<g id="a_edge1"><a xlink:title="content::ResourceDispatcher::OnRequestComplete &#45;&gt; content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)">
<path fill="none" stroke="#b23e00" stroke-width="2" d="M1076.5,-1578.84C1076.5,-1566.97 1076.5,-1551.85 1076.5,-1538.19"/>
<polygon fill="#b23e00" stroke="#b23e00" stroke-width="2" points="1080,-1538.12 1076.5,-1528.12 1073,-1538.12 1080,-1538.12"/>
</a>
</g>
<g id="a_edge1&#45;label"><a xlink:title="content::ResourceDispatcher::OnRequestComplete &#45;&gt; content::WebURLLoaderImpl::Context::OnCompletedRequest (2.11s)">
<text text-anchor="middle" x="1093.5" y="-1549.8" font-family="Times,serif" font-size="14.00"> 2.11s</text>
</a>
</g>
</g>
<!-- N71 -->
<g id="node71" class="node"><title>N71</title>
<g id="a_node71"><a xlink:title="content::URLResponseBodyConsumer::OnReadable (1.36s)">
<polygon fill="#ede2da" stroke="#b26327" points="1132.5,-2016.5 1020.5,-2016.5 1020.5,-1972.5 1132.5,-1972.5 1132.5,-2016.5"/>
<text text-anchor="middle" x="1076.5" y="-2006.1" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1076.5" y="-1997.1" font-family="Times,serif" font-size="8.00">URLResponseBodyConsumer</text>
<text text-anchor="middle" x="1076.5" y="-1988.1" font-family="Times,serif" font-size="8.00">OnReadable</text>
<text text-anchor="middle" x="1076.5" y="-1979.1" font-family="Times,serif" font-size="8.00">0 of 1.36s (15.53%)</text>
</a>
</g>
</g>
<!-- N4&#45;&gt;N71 -->
<g id="edge27" class="edge"><title>N4&#45;&gt;N71</title>
<g id="a_edge27"><a xlink:title="mojo::SimpleWatcher::OnHandleReady &#45;&gt; content::URLResponseBodyConsumer::OnReadable (1.36s)">
<path fill="none" stroke="#b26327" d="M1076.5,-2076.37C1076.5,-2062.01 1076.5,-2042.77 1076.5,-2026.66"/>
<polygon fill="#b26327" stroke="#b26327" points="1080,-2026.61 1076.5,-2016.61 1073,-2026.61 1080,-2026.61"/>
</a>
</g>
<g id="a_edge27&#45;label"><a xlink:title="mojo::SimpleWatcher::OnHandleReady &#45;&gt; content::URLResponseBodyConsumer::OnReadable (1.36s)">
<text text-anchor="middle" x="1093.5" y="-2042.8" font-family="Times,serif" font-size="14.00"> 1.36s</text>
</a>
</g>
</g>
<!-- N76 -->
<g id="node76" class="node"><title>N76</title>
<g id="a_node76"><a xlink:title="mojo::Connector::ReadAllAvailableMessages (0.71s)">
<polygon fill="#ede8e3" stroke="#b2906a" points="1002.5,-2016.5 896.5,-2016.5 896.5,-1972.5 1002.5,-1972.5 1002.5,-2016.5"/>
<text text-anchor="middle" x="949.5" y="-2006.1" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="949.5" y="-1997.1" font-family="Times,serif" font-size="8.00">Connector</text>
<text text-anchor="middle" x="949.5" y="-1988.1" font-family="Times,serif" font-size="8.00">ReadAllAvailableMessages</text>
<text text-anchor="middle" x="949.5" y="-1979.1" font-family="Times,serif" font-size="8.00">0 of 0.71s (8.11%)</text>
</a>
</g>
</g>
<!-- N4&#45;&gt;N76 -->
<g id="edge32" class="edge"><title>N4&#45;&gt;N76</title>
<g id="a_edge32"><a xlink:title="mojo::SimpleWatcher::OnHandleReady &#45;&gt; mojo::Connector::ReadAllAvailableMessages (0.70s)">
<path fill="none" stroke="#b2916b" d="M1050.19,-2076.37C1030.94,-2060.91 1004.67,-2039.81 983.783,-2023.03"/>
<polygon fill="#b2916b" stroke="#b2916b" points="985.769,-2020.14 975.781,-2016.61 981.386,-2025.6 985.769,-2020.14"/>
</a>
</g>
<g id="a_edge32&#45;label"><a xlink:title="mojo::SimpleWatcher::OnHandleReady &#45;&gt; mojo::Connector::ReadAllAvailableMessages (0.70s)">
<text text-anchor="middle" x="1038.5" y="-2042.8" font-family="Times,serif" font-size="14.00"> 0.70s</text>
</a>
</g>
</g>
<!-- N5 -->
<g id="node5" class="node"><title>N5</title>
<g id="a_node5"><a xlink:title="__libc_start_main (1.77s)">
<polygon fill="#edded5" stroke="#b24400" points="1215.5,-3197 1135.5,-3197 1135.5,-3161 1215.5,-3161 1215.5,-3197"/>
<text text-anchor="middle" x="1175.5" y="-3181.6" font-family="Times,serif" font-size="8.00">__libc_start_main</text>
<text text-anchor="middle" x="1175.5" y="-3172.6" font-family="Times,serif" font-size="8.00">0 of 1.77s (20.21%)</text>
</a>
</g>
</g>
<!-- N44 -->
<g id="node44" class="node"><title>N44</title>
<g id="a_node44"><a xlink:title="ChromeMain (1.77s)">
<polygon fill="#edded5" stroke="#b24400" points="1215.5,-3052 1135.5,-3052 1135.5,-3016 1215.5,-3016 1215.5,-3052"/>
<text text-anchor="middle" x="1175.5" y="-3036.6" font-family="Times,serif" font-size="8.00">ChromeMain</text>
<text text-anchor="middle" x="1175.5" y="-3027.6" font-family="Times,serif" font-size="8.00">0 of 1.77s (20.21%)</text>
</a>
</g>
</g>
<!-- N5&#45;&gt;N44 -->
<g id="edge18" class="edge"><title>N5&#45;&gt;N44</title>
<g id="a_edge18"><a xlink:title="__libc_start_main &#45;&gt; ChromeMain (1.77s)">
<path fill="none" stroke="#b24400" stroke-width="2" d="M1175.5,-3160.75C1175.5,-3136.38 1175.5,-3091.61 1175.5,-3062.59"/>
<polygon fill="#b24400" stroke="#b24400" stroke-width="2" points="1179,-3062.31 1175.5,-3052.31 1172,-3062.31 1179,-3062.31"/>
</a>
</g>
<g id="a_edge18&#45;label"><a xlink:title="__libc_start_main &#45;&gt; ChromeMain (1.77s)">
<text text-anchor="middle" x="1192.5" y="-3073.8" font-family="Times,serif" font-size="14.00"> 1.77s</text>
</a>
</g>
</g>
<!-- N6 -->
<g id="node6" class="node"><title>N6</title>
<g id="a_node6"><a xlink:title="blink::ModuleScript::Create (1.72s)">
<polygon fill="#edded5" stroke="#b24603" points="1116.5,-997 1036.5,-997 1036.5,-953 1116.5,-953 1116.5,-997"/>
<text text-anchor="middle" x="1076.5" y="-986.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-977.6" font-family="Times,serif" font-size="8.00">ModuleScript</text>
<text text-anchor="middle" x="1076.5" y="-968.6" font-family="Times,serif" font-size="8.00">Create</text>
<text text-anchor="middle" x="1076.5" y="-959.6" font-family="Times,serif" font-size="8.00">0 of 1.72s (19.63%)</text>
</a>
</g>
</g>
<!-- N14 -->
<g id="node14" class="node"><title>N14</title>
<g id="a_node14"><a xlink:title="WTF::HashTable::insert (0.05s)">
<polygon fill="#ededec" stroke="#b2b1ad" points="991.5,-807 901.5,-807 901.5,-739 991.5,-739 991.5,-807"/>
<text text-anchor="middle" x="946.5" y="-794.2" font-family="Times,serif" font-size="11.00">WTF</text>
<text text-anchor="middle" x="946.5" y="-782.2" font-family="Times,serif" font-size="11.00">HashTable</text>
<text text-anchor="middle" x="946.5" y="-770.2" font-family="Times,serif" font-size="11.00">insert</text>
<text text-anchor="middle" x="946.5" y="-758.2" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text>
<text text-anchor="middle" x="946.5" y="-746.2" font-family="Times,serif" font-size="11.00">of 0.05s (0.57%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N14 -->
<g id="edge88" class="edge"><title>N6&#45;&gt;N14</title>
<g id="a_edge88"><a xlink:title="blink::ModuleScript::Create &#45;&gt; WTF::HashTable::insert (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M1036.23,-959.955C1010.04,-948.587 977.673,-929.839 960.5,-902 945.01,-876.889 941.771,-843.649 942.268,-817.336"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="945.768,-817.382 942.643,-807.258 938.773,-817.121 945.768,-817.382"/>
</a>
</g>
<g id="a_edge88&#45;label"><a xlink:title="blink::ModuleScript::Create &#45;&gt; WTF::HashTable::insert (0.01s)">
<text text-anchor="middle" x="977.5" y="-876.3" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N54 -->
<g id="node54" class="node"><title>N54</title>
<g id="a_node54"><a xlink:title="blink::Modulator::ResolveModuleSpecifier (0.13s)">
<polygon fill="#edeceb" stroke="#b2aea5" points="640.5,-902 544.5,-902 544.5,-858 640.5,-858 640.5,-902"/>
<text text-anchor="middle" x="592.5" y="-891.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="592.5" y="-882.6" font-family="Times,serif" font-size="8.00">Modulator</text>
<text text-anchor="middle" x="592.5" y="-873.6" font-family="Times,serif" font-size="8.00">ResolveModuleSpecifier</text>
<text text-anchor="middle" x="592.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 0.13s (1.48%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N54 -->
<g id="edge34" class="edge"><title>N6&#45;&gt;N54</title>
<g id="a_edge34"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::Modulator::ResolveModuleSpecifier (0.13s)">
<path fill="none" stroke="#b2aea5" d="M1036.42,-970.94C976.878,-965.952 861.744,-954.605 765.5,-935 715.952,-924.907 702.009,-919.271 650.343,-902.216"/>
<polygon fill="#b2aea5" stroke="#b2aea5" points="651.205,-898.815 640.612,-899.017 649.019,-905.465 651.205,-898.815"/>
</a>
</g>
<g id="a_edge34&#45;label"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::Modulator::ResolveModuleSpecifier (0.13s)">
<text text-anchor="middle" x="782.5" y="-923.8" font-family="Times,serif" font-size="14.00"> 0.13s</text>
</a>
</g>
</g>
<!-- N55 -->
<g id="node55" class="node"><title>N55</title>
<g id="a_node55"><a xlink:title="blink::ModulatorImplBase::CompileModule (1.53s)">
<polygon fill="#ede0d8" stroke="#b25616" points="1116.5,-902 1036.5,-902 1036.5,-858 1116.5,-858 1116.5,-902"/>
<text text-anchor="middle" x="1076.5" y="-891.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-882.6" font-family="Times,serif" font-size="8.00">ModulatorImplBase</text>
<text text-anchor="middle" x="1076.5" y="-873.6" font-family="Times,serif" font-size="8.00">CompileModule</text>
<text text-anchor="middle" x="1076.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 1.53s (17.47%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N55 -->
<g id="edge21" class="edge"><title>N6&#45;&gt;N55</title>
<g id="a_edge21"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::ModulatorImplBase::CompileModule (1.53s)">
<path fill="none" stroke="#b25616" d="M1076.5,-952.897C1076.5,-940.887 1076.5,-925.617 1076.5,-912.242"/>
<polygon fill="#b25616" stroke="#b25616" points="1080,-912.02 1076.5,-902.02 1073,-912.02 1080,-912.02"/>
</a>
</g>
<g id="a_edge21&#45;label"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::ModulatorImplBase::CompileModule (1.53s)">
<text text-anchor="middle" x="1093.5" y="-923.8" font-family="Times,serif" font-size="14.00"> 1.53s</text>
</a>
</g>
</g>
<!-- N56 -->
<g id="node56" class="node"><title>N56</title>
<g id="a_node56"><a xlink:title="blink::ModulatorImplBase::ModuleRequestsFromScriptModule (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="788.5,-902 658.5,-902 658.5,-858 788.5,-858 788.5,-902"/>
<text text-anchor="middle" x="723.5" y="-891.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="723.5" y="-882.6" font-family="Times,serif" font-size="8.00">ModulatorImplBase</text>
<text text-anchor="middle" x="723.5" y="-873.6" font-family="Times,serif" font-size="8.00">ModuleRequestsFromScriptModule</text>
<text text-anchor="middle" x="723.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N56 -->
<g id="edge74" class="edge"><title>N6&#45;&gt;N56</title>
<g id="a_edge74"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::ModulatorImplBase::ModuleRequestsFromScriptModule (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M1036.39,-970.372C989.575,-965.428 910.189,-954.828 844.5,-935 820.233,-927.675 794.438,-916.651 772.926,-906.469"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="774.206,-903.201 763.677,-902.019 771.171,-909.509 774.206,-903.201"/>
</a>
</g>
<g id="a_edge74&#45;label"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::ModulatorImplBase::ModuleRequestsFromScriptModule (0.02s)">
<text text-anchor="middle" x="861.5" y="-923.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::ScriptModuleResolverImpl::RegisterModuleScript (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="910.5,-902 806.5,-902 806.5,-858 910.5,-858 910.5,-902"/>
<text text-anchor="middle" x="858.5" y="-891.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="858.5" y="-882.6" font-family="Times,serif" font-size="8.00">ScriptModuleResolverImpl</text>
<text text-anchor="middle" x="858.5" y="-873.6" font-family="Times,serif" font-size="8.00">RegisterModuleScript</text>
<text text-anchor="middle" x="858.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N60 -->
<g id="edge75" class="edge"><title>N6&#45;&gt;N60</title>
<g id="a_edge75"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::ScriptModuleResolverImpl::RegisterModuleScript (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M1036.3,-973.147C998.064,-970.597 940.328,-962.075 898.5,-935 889.074,-928.899 881.082,-919.753 874.778,-910.714"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="877.63,-908.678 869.259,-902.183 871.752,-912.481 877.63,-908.678"/>
</a>
</g>
<g id="a_edge75&#45;label"><a xlink:title="blink::ModuleScript::Create &#45;&gt; blink::ScriptModuleResolverImpl::RegisterModuleScript (0.02s)">
<text text-anchor="middle" x="915.5" y="-923.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N7 -->
<g id="node7" class="node"><title>N7</title>
<g id="a_node7"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished (1.87s)">
<polygon fill="#edded5" stroke="#b24200" points="1135.5,-1210.5 1017.5,-1210.5 1017.5,-1166.5 1135.5,-1166.5 1135.5,-1210.5"/>
<text text-anchor="middle" x="1076.5" y="-1200.1" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-1191.1" font-family="Times,serif" font-size="8.00">DocumentModuleScriptFetcher</text>
<text text-anchor="middle" x="1076.5" y="-1182.1" font-family="Times,serif" font-size="8.00">NotifyFinished</text>
<text text-anchor="middle" x="1076.5" y="-1173.1" font-family="Times,serif" font-size="8.00">0 of 1.87s (21.35%)</text>
</a>
</g>
</g>
<!-- N17 -->
<g id="node17" class="node"><title>N17</title>
<g id="a_node17"><a xlink:title="blink::ModuleScriptLoader::NotifyFetchFinished (1.74s)">
<polygon fill="#edded5" stroke="#b24501" points="1127,-1111 1026,-1111 1026,-1048 1127,-1048 1127,-1111"/>
<text text-anchor="middle" x="1076.5" y="-1099" font-family="Times,serif" font-size="10.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-1088" font-family="Times,serif" font-size="10.00">ModuleScriptLoader</text>
<text text-anchor="middle" x="1076.5" y="-1077" font-family="Times,serif" font-size="10.00">NotifyFetchFinished</text>
<text text-anchor="middle" x="1076.5" y="-1066" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="1076.5" y="-1055" font-family="Times,serif" font-size="10.00">of 1.74s (19.86%)</text>
</a>
</g>
</g>
<!-- N7&#45;&gt;N17 -->
<g id="edge19" class="edge"><title>N7&#45;&gt;N17</title>
<g id="a_edge19"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished &#45;&gt; blink::ModuleScriptLoader::NotifyFetchFinished (1.74s)">
<path fill="none" stroke="#b24501" d="M1076.5,-1166.36C1076.5,-1153.59 1076.5,-1136.89 1076.5,-1121.61"/>
<polygon fill="#b24501" stroke="#b24501" points="1080,-1121.33 1076.5,-1111.33 1073,-1121.33 1080,-1121.33"/>
</a>
</g>
<g id="a_edge19&#45;label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished &#45;&gt; blink::ModuleScriptLoader::NotifyFetchFinished (1.74s)">
<text text-anchor="middle" x="1093.5" y="-1132.8" font-family="Times,serif" font-size="14.00"> 1.74s</text>
</a>
</g>
</g>
<!-- N31 -->
<g id="node31" class="node"><title>N31</title>
<g id="a_node31"><a xlink:title="blink::ScriptResource::SourceText (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="322,-902 245,-902 245,-858 322,-858 322,-902"/>
<text text-anchor="middle" x="283.5" y="-891.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="283.5" y="-882.6" font-family="Times,serif" font-size="8.00">ScriptResource</text>
<text text-anchor="middle" x="283.5" y="-873.6" font-family="Times,serif" font-size="8.00">SourceText</text>
<text text-anchor="middle" x="283.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N7&#45;&gt;N31 -->
<g id="edge42" class="edge"><title>N7&#45;&gt;N31</title>
<g id="a_edge42"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished &#45;&gt; blink::ScriptResource::SourceText (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M1017.41,-1183.14C932.002,-1175.52 770.006,-1156.05 639.5,-1111 538.003,-1075.97 515.93,-1056.42 426.5,-997 385.613,-969.832 342.323,-933.518 314.226,-908.806"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="316.526,-906.168 306.719,-902.161 311.887,-911.41 316.526,-906.168"/>
</a>
</g>
<g id="a_edge42&#45;label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished &#45;&gt; blink::ScriptResource::SourceText (0.06s)">
<text text-anchor="middle" x="492.5" y="-1018.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N32 -->
<g id="node32" class="node"><title>N32</title>
<g id="a_node32"><a xlink:title="blink::Resource::RemoveClient (0.05s)">
<polygon fill="#ededec" stroke="#b2b1ad" points="732,-1111 649,-1111 649,-1048 732,-1048 732,-1111"/>
<text text-anchor="middle" x="690.5" y="-1099" font-family="Times,serif" font-size="10.00">blink</text>
<text text-anchor="middle" x="690.5" y="-1088" font-family="Times,serif" font-size="10.00">Resource</text>
<text text-anchor="middle" x="690.5" y="-1077" font-family="Times,serif" font-size="10.00">RemoveClient</text>
<text text-anchor="middle" x="690.5" y="-1066" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="690.5" y="-1055" font-family="Times,serif" font-size="10.00">of 0.05s (0.57%)</text>
</a>
</g>
</g>
<!-- N7&#45;&gt;N32 -->
<g id="edge50" class="edge"><title>N7&#45;&gt;N32</title>
<g id="a_edge50"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished &#45;&gt; blink::Resource::RemoveClient (0.05s)">
<path fill="none" stroke="#b2b1ad" d="M1017.45,-1171.13C942.118,-1150.25 813.048,-1114.47 741.689,-1094.69"/>
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="742.586,-1091.31 732.015,-1092.01 740.716,-1098.05 742.586,-1091.31"/>
</a>
</g>
<g id="a_edge50&#45;label"><a xlink:title="blink::DocumentModuleScriptFetcher::NotifyFinished &#45;&gt; blink::Resource::RemoveClient (0.05s)">
<text text-anchor="middle" x="935.5" y="-1132.8" font-family="Times,serif" font-size="14.00"> 0.05s</text>
</a>
</g>
</g>
<!-- N10 -->
<g id="node10" class="node"><title>N10</title>
<g id="a_node10"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish (2s)">
<polygon fill="#edddd5" stroke="#b23f00" points="1118,-1424 1035,-1424 1035,-1380 1118,-1380 1118,-1424"/>
<text text-anchor="middle" x="1076.5" y="-1413.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-1404.6" font-family="Times,serif" font-size="8.00">ResourceFetcher</text>
<text text-anchor="middle" x="1076.5" y="-1395.6" font-family="Times,serif" font-size="8.00">HandleLoaderFinish</text>
<text text-anchor="middle" x="1076.5" y="-1386.6" font-family="Times,serif" font-size="8.00">0 of 2s (22.83%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N10 -->
<g id="edge5" class="edge"><title>N8&#45;&gt;N10</title>
<g id="a_edge5"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest &#45;&gt; blink::ResourceFetcher::HandleLoaderFinish (2s)">
<path fill="none" stroke="#b23f00" stroke-width="2" d="M1076.5,-1474.88C1076.5,-1462.42 1076.5,-1447.32 1076.5,-1434.19"/>
<polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="1080,-1434.17 1076.5,-1424.17 1073,-1434.17 1080,-1434.17"/>
</a>
</g>
<g id="a_edge5&#45;label"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest &#45;&gt; blink::ResourceFetcher::HandleLoaderFinish (2s)">
<text text-anchor="middle" x="1084.5" y="-1445.8" font-family="Times,serif" font-size="14.00"> 2s</text>
</a>
</g>
</g>
<!-- N57 -->
<g id="node57" class="node"><title>N57</title>
<g id="a_node57"><a xlink:title="blink::ResourceLoader::DidFinishLoading (0.10s)">
<polygon fill="#edeceb" stroke="#b2afa8" points="688,-1424 611,-1424 611,-1380 688,-1380 688,-1424"/>
<text text-anchor="middle" x="649.5" y="-1413.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="649.5" y="-1404.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text>
<text text-anchor="middle" x="649.5" y="-1395.6" font-family="Times,serif" font-size="8.00">DidFinishLoading</text>
<text text-anchor="middle" x="649.5" y="-1386.6" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N57 -->
<g id="edge38" class="edge"><title>N8&#45;&gt;N57</title>
<g id="a_edge38"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest &#45;&gt; blink::ResourceLoader::DidFinishLoading (0.10s)">
<path fill="none" stroke="#b2afa8" d="M1033.21,-1490.61C953.035,-1472.31 781.997,-1433.25 698.036,-1414.08"/>
<polygon fill="#b2afa8" stroke="#b2afa8" points="698.769,-1410.66 688.24,-1411.85 697.21,-1417.48 698.769,-1410.66"/>
</a>
</g>
<g id="a_edge38&#45;label"><a xlink:title="content::WebURLLoaderImpl::Context::OnCompletedRequest &#45;&gt; blink::ResourceLoader::DidFinishLoading (0.10s)">
<text text-anchor="middle" x="893.5" y="-1445.8" font-family="Times,serif" font-size="14.00"> 0.10s</text>
</a>
</g>
</g>
<!-- N10&#45;&gt;N14 -->
<g id="edge91" class="edge"><title>N10&#45;&gt;N14</title>
<g id="a_edge91"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish &#45;&gt; WTF::HashTable::insert (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M1118.12,-1386.64C1154.49,-1371.13 1201.5,-1342.56 1201.5,-1298.5 1201.5,-1298.5 1201.5,-1298.5 1201.5,-879 1201.5,-795.307 1107.57,-831.369 1027.5,-807 1018.86,-804.37 1009.86,-801.181 1001.14,-797.834"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="1002.4,-794.568 991.808,-794.159 999.83,-801.081 1002.4,-794.568"/>
</a>
</g>
<g id="a_edge91&#45;label"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish &#45;&gt; WTF::HashTable::insert (0.01s)">
<text text-anchor="middle" x="1218.5" y="-1075.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N19 -->
<g id="node19" class="node"><title>N19</title>
<g id="a_node19"><a xlink:title="blink::Resource::NotifyFinished (1.88s)">
<polygon fill="#edded5" stroke="#b24200" points="1116.5,-1319.5 1036.5,-1319.5 1036.5,-1275.5 1116.5,-1275.5 1116.5,-1319.5"/>
<text text-anchor="middle" x="1076.5" y="-1309.1" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-1300.1" font-family="Times,serif" font-size="8.00">Resource</text>
<text text-anchor="middle" x="1076.5" y="-1291.1" font-family="Times,serif" font-size="8.00">NotifyFinished</text>
<text text-anchor="middle" x="1076.5" y="-1282.1" font-family="Times,serif" font-size="8.00">0 of 1.88s (21.46%)</text>
</a>
</g>
</g>
<!-- N10&#45;&gt;N19 -->
<g id="edge12" class="edge"><title>N10&#45;&gt;N19</title>
<g id="a_edge12"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish &#45;&gt; blink::Resource::NotifyFinished (1.88s)">
<path fill="none" stroke="#b24200" stroke-width="2" d="M1076.5,-1379.76C1076.5,-1365.33 1076.5,-1346 1076.5,-1329.81"/>
<polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="1080,-1329.71 1076.5,-1319.71 1073,-1329.71 1080,-1329.71"/>
</a>
</g>
<g id="a_edge12&#45;label"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish &#45;&gt; blink::Resource::NotifyFinished (1.88s)">
<text text-anchor="middle" x="1093.5" y="-1350.8" font-family="Times,serif" font-size="14.00"> 1.88s</text>
</a>
</g>
</g>
<!-- N40 -->
<g id="node40" class="node"><title>N40</title>
<g id="a_node40"><a xlink:title="blink::ResourceResponse::operator= (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="1018,-1329 925,-1329 925,-1266 1018,-1266 1018,-1329"/>
<text text-anchor="middle" x="971.5" y="-1317" font-family="Times,serif" font-size="10.00">blink</text>
<text text-anchor="middle" x="971.5" y="-1306" font-family="Times,serif" font-size="10.00">ResourceResponse</text>
<text text-anchor="middle" x="971.5" y="-1295" font-family="Times,serif" font-size="10.00">operator=</text>
<text text-anchor="middle" x="971.5" y="-1284" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="971.5" y="-1273" font-family="Times,serif" font-size="10.00">of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N10&#45;&gt;N40 -->
<g id="edge77" class="edge"><title>N10&#45;&gt;N40</title>
<g id="a_edge77"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish &#45;&gt; blink::ResourceResponse::operator= (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M1054.74,-1379.76C1041.84,-1367.16 1025.11,-1350.83 1010.03,-1336.11"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="1012.39,-1333.52 1002.79,-1329.04 1007.5,-1338.53 1012.39,-1333.52"/>
</a>
</g>
<g id="a_edge77&#45;label"><a xlink:title="blink::ResourceFetcher::HandleLoaderFinish &#45;&gt; blink::ResourceResponse::operator= (0.02s)">
<text text-anchor="middle" x="1053.5" y="-1350.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N11 -->
<g id="node11" class="node"><title>N11</title>
<g id="a_node11"><a xlink:title="WTF::HashTable::InsertPassingHashCode (0.07s)">
<polygon fill="#edecec" stroke="#b2b0ab" points="504,-432.5 391,-432.5 391,-369.5 504,-369.5 504,-432.5"/>
<text text-anchor="middle" x="447.5" y="-420.5" font-family="Times,serif" font-size="10.00">WTF</text>
<text text-anchor="middle" x="447.5" y="-409.5" font-family="Times,serif" font-size="10.00">HashTable</text>
<text text-anchor="middle" x="447.5" y="-398.5" font-family="Times,serif" font-size="10.00">InsertPassingHashCode</text>
<text text-anchor="middle" x="447.5" y="-387.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
<text text-anchor="middle" x="447.5" y="-376.5" font-family="Times,serif" font-size="10.00">of 0.07s (0.8%)</text>
</a>
</g>
</g>
<!-- N11&#45;&gt;N9 -->
<g id="edge84" class="edge"><title>N11&#45;&gt;N9</title>
<g id="a_edge84"><a xlink:title="WTF::HashTable::InsertPassingHashCode ... &lt;unknown&gt; (0.01s)">
<path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M473.344,-369.373C484.649,-356.968 498.509,-343.007 512.5,-332 548.028,-304.049 574.753,-318.156 600.5,-281 650.825,-208.374 648.738,-97.3912 644.539,-46.3796"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="648,-45.7962 643.601,-36.1582 641.03,-46.4363 648,-45.7962"/>
</a>
</g>
<g id="a_edge84&#45;label"><a xlink:title="WTF::HashTable::InsertPassingHashCode ... &lt;unknown&gt; (0.01s)">
<text text-anchor="middle" x="658.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N43 -->
<g id="node43" class="node"><title>N43</title>
<g id="a_node43"><a xlink:title="WTF::HashTable::Expand (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="878,-263 801,-263 801,-219 878,-219 878,-263"/>
<text text-anchor="middle" x="839.5" y="-252.6" font-family="Times,serif" font-size="8.00">WTF</text>
<text text-anchor="middle" x="839.5" y="-243.6" font-family="Times,serif" font-size="8.00">HashTable</text>
<text text-anchor="middle" x="839.5" y="-234.6" font-family="Times,serif" font-size="8.00">Expand</text>
<text text-anchor="middle" x="839.5" y="-225.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N11&#45;&gt;N43 -->
<g id="edge85" class="edge"><title>N11&#45;&gt;N43</title>
<g id="a_edge85"><a xlink:title="WTF::HashTable::InsertPassingHashCode &#45;&gt; WTF::HashTable::Expand (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M469.086,-369.23C480.391,-355.538 495.435,-340.595 512.5,-332 569.71,-303.185 593.42,-329.792 655.5,-314 703.107,-301.89 755.029,-280.798 791.541,-264.563"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="793.259,-267.628 800.946,-260.337 790.39,-261.243 793.259,-267.628"/>
</a>
</g>
<g id="a_edge85&#45;label"><a xlink:title="WTF::HashTable::InsertPassingHashCode &#45;&gt; WTF::HashTable::Expand (0.01s)">
<text text-anchor="middle" x="719.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N47 -->
<g id="node47" class="node"><title>N47</title>
<g id="a_node47"><a xlink:title="WTF::HashAndUTF8CharactersTranslator::Translate (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="486,-263 351,-263 351,-219 486,-219 486,-263"/>
<text text-anchor="middle" x="418.5" y="-252.6" font-family="Times,serif" font-size="8.00">WTF</text>
<text text-anchor="middle" x="418.5" y="-243.6" font-family="Times,serif" font-size="8.00">HashAndUTF8CharactersTranslator</text>
<text text-anchor="middle" x="418.5" y="-234.6" font-family="Times,serif" font-size="8.00">Translate</text>
<text text-anchor="middle" x="418.5" y="-225.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N11&#45;&gt;N47 -->
<g id="edge69" class="edge"><title>N11&#45;&gt;N47</title>
<g id="a_edge69"><a xlink:title="WTF::HashTable::InsertPassingHashCode &#45;&gt; WTF::HashAndUTF8CharactersTranslator::Translate (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M441.84,-369.161C436.753,-341.449 429.32,-300.951 424.216,-273.145"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="427.632,-272.366 422.384,-263.163 420.747,-273.63 427.632,-272.366"/>
</a>
</g>
<g id="a_edge69&#45;label"><a xlink:title="WTF::HashTable::InsertPassingHashCode &#45;&gt; WTF::HashAndUTF8CharactersTranslator::Translate (0.02s)">
<text text-anchor="middle" x="448.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N12 -->
<g id="node12" class="node"><title>N12</title>
<g id="a_node12"><a xlink:title="v8::ScriptCompiler::CompileModule (1.50s)">
<polygon fill="#ede1d8" stroke="#b25819" points="1121,-584 1032,-584 1032,-521 1121,-521 1121,-584"/>
<text text-anchor="middle" x="1076.5" y="-572" font-family="Times,serif" font-size="10.00">v8</text>
<text text-anchor="middle" x="1076.5" y="-561" font-family="Times,serif" font-size="10.00">ScriptCompiler</text>
<text text-anchor="middle" x="1076.5" y="-550" font-family="Times,serif" font-size="10.00">CompileModule</text>
<text text-anchor="middle" x="1076.5" y="-539" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
<text text-anchor="middle" x="1076.5" y="-528" font-family="Times,serif" font-size="10.00">of 1.50s (17.12%)</text>
</a>
</g>
</g>
<!-- N12&#45;&gt;N2 -->
<g id="edge25" class="edge"><title>N12&#45;&gt;N2</title>
<g id="a_edge25"><a xlink:title="v8::ScriptCompiler::CompileModule &#45;&gt; v8::ScriptCompiler::CompileUnboundInternal (1.47s)">
<path fill="none" stroke="#b25a1c" d="M1076.5,-520.886C1076.5,-508.947 1076.5,-494.669 1076.5,-480.218"/>
<polygon fill="#b25a1c" stroke="#b25a1c" points="1080,-480.212 1076.5,-470.212 1073,-480.212 1080,-480.212"/>
</a>
</g>
<g id="a_edge25&#45;label"><a xlink:title="v8::ScriptCompiler::CompileModule &#45;&gt; v8::ScriptCompiler::CompileUnboundInternal (1.47s)">
<text text-anchor="middle" x="1093.5" y="-491.8" font-family="Times,serif" font-size="14.00"> 1.47s</text>
</a>
</g>
</g>
<!-- N13 -->
<g id="node13" class="node"><title>N13</title>
<g id="a_node13"><a xlink:title="blink::KURL::Init (0.13s)">
<polygon fill="#edeceb" stroke="#b2aea5" points="631,-795 554,-795 554,-751 631,-751 631,-795"/>
<text text-anchor="middle" x="592.5" y="-784.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="592.5" y="-775.6" font-family="Times,serif" font-size="8.00">KURL</text>
<text text-anchor="middle" x="592.5" y="-766.6" font-family="Times,serif" font-size="8.00">Init</text>
<text text-anchor="middle" x="592.5" y="-757.6" font-family="Times,serif" font-size="8.00">0 of 0.13s (1.48%)</text>
</a>
</g>
</g>
<!-- N34 -->
<g id="node34" class="node"><title>N34</title>
<g id="a_node34"><a xlink:title="base::LowerCaseEqualsASCII (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="649.5,-682 533.5,-682 533.5,-641 649.5,-641 649.5,-682"/>
<text text-anchor="middle" x="591.5" y="-670" font-family="Times,serif" font-size="10.00">base</text>
<text text-anchor="middle" x="591.5" y="-659" font-family="Times,serif" font-size="10.00">LowerCaseEqualsASCII</text>
<text text-anchor="middle" x="591.5" y="-648" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N13&#45;&gt;N34 -->
<g id="edge72" class="edge"><title>N13&#45;&gt;N34</title>
<g id="a_edge72"><a xlink:title="blink::KURL::Init &#45;&gt; base::LowerCaseEqualsASCII (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M592.307,-750.887C592.155,-734.185 591.94,-710.664 591.77,-692.085"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="595.27,-692.044 591.679,-682.076 588.27,-692.108 595.27,-692.044"/>
</a>
</g>
<g id="a_edge72&#45;label"><a xlink:title="blink::KURL::Init &#45;&gt; base::LowerCaseEqualsASCII (0.02s)">
<text text-anchor="middle" x="609.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N36 -->
<g id="node36" class="node"><title>N36</title>
<g id="a_node36"><a xlink:title="url::ResolveRelative (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="751.5,-687.5 667.5,-687.5 667.5,-635.5 751.5,-635.5 751.5,-687.5"/>
<text text-anchor="middle" x="709.5" y="-675.5" font-family="Times,serif" font-size="10.00">url</text>
<text text-anchor="middle" x="709.5" y="-664.5" font-family="Times,serif" font-size="10.00">ResolveRelative</text>
<text text-anchor="middle" x="709.5" y="-653.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="709.5" y="-642.5" font-family="Times,serif" font-size="10.00">of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N13&#45;&gt;N36 -->
<g id="edge56" class="edge"><title>N13&#45;&gt;N36</title>
<g id="a_edge56"><a xlink:title="blink::KURL::Init &#45;&gt; url::ResolveRelative (0.03s)">
<path fill="none" stroke="#b2b1af" d="M615.059,-750.887C632.059,-734.977 655.671,-712.878 675.032,-694.758"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="677.583,-697.165 682.493,-687.776 672.8,-692.054 677.583,-697.165"/>
</a>
</g>
<g id="a_edge56&#45;label"><a xlink:title="blink::KURL::Init &#45;&gt; url::ResolveRelative (0.03s)">
<text text-anchor="middle" x="678.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N46 -->
<g id="node46" class="node"><title>N46</title>
<g id="a_node46"><a xlink:title="WTF::AtomicString::FromUTF8 (0.08s)">
<polygon fill="#edecec" stroke="#b2b0aa" points="515,-683.5 438,-683.5 438,-639.5 515,-639.5 515,-683.5"/>
<text text-anchor="middle" x="476.5" y="-673.1" font-family="Times,serif" font-size="8.00">WTF</text>
<text text-anchor="middle" x="476.5" y="-664.1" font-family="Times,serif" font-size="8.00">AtomicString</text>
<text text-anchor="middle" x="476.5" y="-655.1" font-family="Times,serif" font-size="8.00">FromUTF8</text>
<text text-anchor="middle" x="476.5" y="-646.1" font-family="Times,serif" font-size="8.00">0 of 0.08s (0.91%)</text>
</a>
</g>
</g>
<!-- N13&#45;&gt;N46 -->
<g id="edge41" class="edge"><title>N13&#45;&gt;N46</title>
<g id="a_edge41"><a xlink:title="blink::KURL::Init &#45;&gt; WTF::AtomicString::FromUTF8 (0.08s)">
<path fill="none" stroke="#b2b0aa" d="M570.134,-750.887C551.92,-733.694 526.051,-709.275 506.118,-690.458"/>
<polygon fill="#b2b0aa" stroke="#b2b0aa" points="508.472,-687.867 498.797,-683.548 503.667,-692.957 508.472,-687.867"/>
</a>
</g>
<g id="a_edge41&#45;label"><a xlink:title="blink::KURL::Init &#45;&gt; WTF::AtomicString::FromUTF8 (0.08s)">
<text text-anchor="middle" x="555.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.08s</text>
</a>
</g>
</g>
<!-- N14&#45;&gt;N43 -->
<g id="edge86" class="edge"><title>N14&#45;&gt;N43</title>
<g id="a_edge86"><a xlink:title="WTF::HashTable::insert &#45;&gt; WTF::HashTable::Expand (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M942.272,-738.83C937.706,-710.218 928.789,-668.363 912.5,-635 899.862,-609.114 883.202,-610.745 872.5,-584 829.537,-476.638 832.719,-335.758 836.795,-273.692"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="840.31,-273.612 837.529,-263.389 833.327,-273.115 840.31,-273.612"/>
</a>
</g>
<g id="a_edge86&#45;label"><a xlink:title="WTF::HashTable::insert &#45;&gt; WTF::HashTable::Expand (0.01s)">
<text text-anchor="middle" x="889.5" y="-548.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N15 -->
<g id="node15" class="node"><title>N15</title>
<g id="a_node15"><a xlink:title="syscall (0.04s)">
<polygon fill="#ededec" stroke="#b2b1ae" points="273.5,-136.5 195.5,-136.5 195.5,-100.5 273.5,-100.5 273.5,-136.5"/>
<text text-anchor="middle" x="234.5" y="-121.7" font-family="Times,serif" font-size="11.00">syscall</text>
<text text-anchor="middle" x="234.5" y="-109.7" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text>
</a>
</g>
</g>
<!-- N16 -->
<g id="node16" class="node"><title>N16</title>
<g id="a_node16"><a xlink:title="WTF::AtomicStringTable::Add (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="420,-683.5 341,-683.5 341,-639.5 420,-639.5 420,-683.5"/>
<text text-anchor="middle" x="380.5" y="-673.1" font-family="Times,serif" font-size="8.00">WTF</text>
<text text-anchor="middle" x="380.5" y="-664.1" font-family="Times,serif" font-size="8.00">AtomicStringTable</text>
<text text-anchor="middle" x="380.5" y="-655.1" font-family="Times,serif" font-size="8.00">Add</text>
<text text-anchor="middle" x="380.5" y="-646.1" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N16&#45;&gt;N11 -->
<g id="edge66" class="edge"><title>N16&#45;&gt;N11</title>
<g id="a_edge66"><a xlink:title="WTF::AtomicStringTable::Add &#45;&gt; WTF::HashTable::InsertPassingHashCode (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M376.647,-639.258C372.412,-611.518 367.554,-561.699 378.5,-521 386.221,-492.293 402.746,-463.368 417.689,-441.224"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="420.72,-442.996 423.532,-432.781 414.964,-439.013 420.72,-442.996"/>
</a>
</g>
<g id="a_edge66&#45;label"><a xlink:title="WTF::AtomicStringTable::Add &#45;&gt; WTF::HashTable::InsertPassingHashCode (0.02s)">
<text text-anchor="middle" x="395.5" y="-548.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N23 -->
<g id="node23" class="node"><title>N23</title>
<g id="a_node23"><a xlink:title="WTF::StringImpl::HashSlowCase (0.04s)">
<polygon fill="#ededec" stroke="#b2b1ae" points="507,-580.5 422,-580.5 422,-524.5 507,-524.5 507,-580.5"/>
<text text-anchor="middle" x="464.5" y="-567.7" font-family="Times,serif" font-size="11.00">WTF</text>
<text text-anchor="middle" x="464.5" y="-555.7" font-family="Times,serif" font-size="11.00">StringImpl</text>
<text text-anchor="middle" x="464.5" y="-543.7" font-family="Times,serif" font-size="11.00">HashSlowCase</text>
<text text-anchor="middle" x="464.5" y="-531.7" font-family="Times,serif" font-size="11.00">0.04s (0.46%)</text>
</a>
</g>
</g>
<!-- N16&#45;&gt;N23 -->
<g id="edge52" class="edge"><title>N16&#45;&gt;N23</title>
<g id="a_edge52"><a xlink:title="WTF::AtomicStringTable::Add &#45;&gt; WTF::StringImpl::HashSlowCase (0.04s)">
<path fill="none" stroke="#b2b1ae" d="M397.096,-639.36C408.436,-624.914 423.735,-605.427 436.891,-588.669"/>
<polygon fill="#b2b1ae" stroke="#b2b1ae" points="439.729,-590.722 443.151,-580.695 434.222,-586.4 439.729,-590.722"/>
</a>
</g>
<g id="a_edge52&#45;label"><a xlink:title="WTF::AtomicStringTable::Add &#45;&gt; WTF::StringImpl::HashSlowCase (0.04s)">
<text text-anchor="middle" x="442.5" y="-605.8" font-family="Times,serif" font-size="14.00"> 0.04s</text>
</a>
</g>
</g>
<!-- N17&#45;&gt;N6 -->
<g id="edge20" class="edge"><title>N17&#45;&gt;N6</title>
<g id="a_edge20"><a xlink:title="blink::ModuleScriptLoader::NotifyFetchFinished &#45;&gt; blink::ModuleScript::Create (1.72s)">
<path fill="none" stroke="#b24603" d="M1076.5,-1047.75C1076.5,-1035.03 1076.5,-1020.3 1076.5,-1007.51"/>
<polygon fill="#b24603" stroke="#b24603" points="1080,-1007.3 1076.5,-997.304 1073,-1007.3 1080,-1007.3"/>
</a>
</g>
<g id="a_edge20&#45;label"><a xlink:title="blink::ModuleScriptLoader::NotifyFetchFinished &#45;&gt; blink::ModuleScript::Create (1.72s)">
<text text-anchor="middle" x="1093.5" y="-1018.8" font-family="Times,serif" font-size="14.00"> 1.72s</text>
</a>
</g>
</g>
<!-- N18 -->
<g id="node18" class="node"><title>N18</title>
<g id="a_node18"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest (0.10s)">
<polygon fill="#edeceb" stroke="#b2afa8" points="292.5,-997 198.5,-997 198.5,-953 292.5,-953 292.5,-997"/>
<text text-anchor="middle" x="245.5" y="-986.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="245.5" y="-977.6" font-family="Times,serif" font-size="8.00">ResourceDispatcher</text>
<text text-anchor="middle" x="245.5" y="-968.6" font-family="Times,serif" font-size="8.00">RemovePendingRequest</text>
<text text-anchor="middle" x="245.5" y="-959.6" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text>
</a>
</g>
</g>
<!-- N41 -->
<g id="node41" class="node"><title>N41</title>
<g id="a_node41"><a xlink:title="base::SequencedTaskRunner::DeleteOrReleaseSoonInternal (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="276.5,-423 162.5,-423 162.5,-379 276.5,-379 276.5,-423"/>
<text text-anchor="middle" x="219.5" y="-412.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="219.5" y="-403.6" font-family="Times,serif" font-size="8.00">SequencedTaskRunner</text>
<text text-anchor="middle" x="219.5" y="-394.6" font-family="Times,serif" font-size="8.00">DeleteOrReleaseSoonInternal</text>
<text text-anchor="middle" x="219.5" y="-385.6" font-family="Times,serif" font-size="8.00">0 of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N18&#45;&gt;N41 -->
<g id="edge58" class="edge"><title>N18&#45;&gt;N41</title>
<g id="a_edge58"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest &#45;&gt; base::SequencedTaskRunner::DeleteOrReleaseSoonInternal (0.03s)">
<path fill="none" stroke="#b2b1af" d="M234.866,-952.787C226.59,-934.305 216.5,-906.538 216.5,-881 216.5,-881 216.5,-881 216.5,-551.5 216.5,-510.808 217.625,-463.897 218.497,-433.64"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="222.006,-433.388 218.804,-423.288 215.009,-433.18 222.006,-433.388"/>
</a>
</g>
<g id="a_edge58&#45;label"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest &#45;&gt; base::SequencedTaskRunner::DeleteOrReleaseSoonInternal (0.03s)">
<text text-anchor="middle" x="233.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N70 -->
<g id="node70" class="node"><title>N70</title>
<g id="a_node70"><a xlink:title="content::URLLoaderClientImpl::~URLLoaderClientImpl (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="174,-902 79,-902 79,-858 174,-858 174,-902"/>
<text text-anchor="middle" x="126.5" y="-891.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="126.5" y="-882.6" font-family="Times,serif" font-size="8.00">URLLoaderClientImpl</text>
<text text-anchor="middle" x="126.5" y="-873.6" font-family="Times,serif" font-size="8.00">~URLLoaderClientImpl</text>
<text text-anchor="middle" x="126.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N18&#45;&gt;N70 -->
<g id="edge43" class="edge"><title>N18&#45;&gt;N70</title>
<g id="a_edge43"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest &#45;&gt; content::URLLoaderClientImpl::~URLLoaderClientImpl (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M198.268,-954.226C187.918,-948.79 177.404,-942.338 168.5,-935 159.957,-927.959 152.067,-918.887 145.487,-910.195"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="148.298,-908.11 139.601,-902.058 142.626,-912.212 148.298,-908.11"/>
</a>
</g>
<g id="a_edge43&#45;label"><a xlink:title="content::ResourceDispatcher::RemovePendingRequest &#45;&gt; content::URLLoaderClientImpl::~URLLoaderClientImpl (0.06s)">
<text text-anchor="middle" x="185.5" y="-923.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N19&#45;&gt;N7 -->
<g id="edge13" class="edge"><title>N19&#45;&gt;N7</title>
<g id="a_edge13"><a xlink:title="blink::Resource::NotifyFinished &#45;&gt; blink::DocumentModuleScriptFetcher::NotifyFinished (1.87s)">
<path fill="none" stroke="#b24200" stroke-width="2" d="M1076.5,-1275.36C1076.5,-1259.83 1076.5,-1238.46 1076.5,-1220.93"/>
<polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="1080,-1220.6 1076.5,-1210.6 1073,-1220.6 1080,-1220.6"/>
</a>
</g>
<g id="a_edge13&#45;label"><a xlink:title="blink::Resource::NotifyFinished &#45;&gt; blink::DocumentModuleScriptFetcher::NotifyFinished (1.87s)">
<text text-anchor="middle" x="1093.5" y="-1236.8" font-family="Times,serif" font-size="14.00"> 1.87s</text>
</a>
</g>
</g>
<!-- N19&#45;&gt;N14 -->
<g id="edge90" class="edge"><title>N19&#45;&gt;N14</title>
<g id="a_edge90"><a xlink:title="blink::Resource::NotifyFinished &#45;&gt; WTF::HashTable::insert (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M1101.34,-1275.43C1117.03,-1260.41 1135.9,-1238.74 1144.5,-1215 1164.39,-1160.12 1161.94,-998.605 1125.5,-953 1109.97,-933.565 1094.56,-946.489 1072.5,-935 1050.5,-923.546 1044.43,-920.128 1027.5,-902 1014.25,-887.812 989.35,-847.425 970.638,-815.771"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="973.626,-813.948 965.539,-807.104 967.593,-817.497 973.626,-813.948"/>
</a>
</g>
<g id="a_edge90&#45;label"><a xlink:title="blink::Resource::NotifyFinished &#45;&gt; WTF::HashTable::insert (0.01s)">
<text text-anchor="middle" x="1168.5" y="-1018.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N20 -->
<g id="node20" class="node"><title>N20</title>
<g id="a_node20"><a xlink:title="blink::ScriptModule::Compile (1.52s)">
<polygon fill="#ede0d8" stroke="#b25617" points="1116.5,-795 1036.5,-795 1036.5,-751 1116.5,-751 1116.5,-795"/>
<text text-anchor="middle" x="1076.5" y="-784.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-775.6" font-family="Times,serif" font-size="8.00">ScriptModule</text>
<text text-anchor="middle" x="1076.5" y="-766.6" font-family="Times,serif" font-size="8.00">Compile</text>
<text text-anchor="middle" x="1076.5" y="-757.6" font-family="Times,serif" font-size="8.00">0 of 1.52s (17.35%)</text>
</a>
</g>
</g>
<!-- N21 -->
<g id="node21" class="node"><title>N21</title>
<g id="a_node21"><a xlink:title="blink::V8ScriptRunner::CompileModule (1.51s)">
<polygon fill="#ede1d8" stroke="#b25718" points="1116.5,-683.5 1036.5,-683.5 1036.5,-639.5 1116.5,-639.5 1116.5,-683.5"/>
<text text-anchor="middle" x="1076.5" y="-673.1" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1076.5" y="-664.1" font-family="Times,serif" font-size="8.00">V8ScriptRunner</text>
<text text-anchor="middle" x="1076.5" y="-655.1" font-family="Times,serif" font-size="8.00">CompileModule</text>
<text text-anchor="middle" x="1076.5" y="-646.1" font-family="Times,serif" font-size="8.00">0 of 1.51s (17.24%)</text>
</a>
</g>
</g>
<!-- N20&#45;&gt;N21 -->
<g id="edge23" class="edge"><title>N20&#45;&gt;N21</title>
<g id="a_edge23"><a xlink:title="blink::ScriptModule::Compile &#45;&gt; blink::V8ScriptRunner::CompileModule (1.51s)">
<path fill="none" stroke="#b25718" d="M1076.5,-750.887C1076.5,-734.679 1076.5,-712.048 1076.5,-693.744"/>
<polygon fill="#b25718" stroke="#b25718" points="1080,-693.548 1076.5,-683.548 1073,-693.548 1080,-693.548"/>
</a>
</g>
<g id="a_edge23&#45;label"><a xlink:title="blink::ScriptModule::Compile &#45;&gt; blink::V8ScriptRunner::CompileModule (1.51s)">
<text text-anchor="middle" x="1093.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 1.51s</text>
</a>
</g>
</g>
<!-- N21&#45;&gt;N12 -->
<g id="edge24" class="edge"><title>N21&#45;&gt;N12</title>
<g id="a_edge24"><a xlink:title="blink::V8ScriptRunner::CompileModule &#45;&gt; v8::ScriptCompiler::CompileModule (1.50s)">
<path fill="none" stroke="#b25819" d="M1076.5,-639.36C1076.5,-626.593 1076.5,-609.888 1076.5,-594.609"/>
<polygon fill="#b25819" stroke="#b25819" points="1080,-594.325 1076.5,-584.325 1073,-594.325 1080,-594.325"/>
</a>
</g>
<g id="a_edge24&#45;label"><a xlink:title="blink::V8ScriptRunner::CompileModule &#45;&gt; v8::ScriptCompiler::CompileModule (1.50s)">
<text text-anchor="middle" x="1093.5" y="-605.8" font-family="Times,serif" font-size="14.00"> 1.50s</text>
</a>
</g>
</g>
<!-- N29 -->
<g id="node29" class="node"><title>N29</title>
<g id="a_node29"><a xlink:title="v8::V8::GlobalizeReference (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="1013.5,-578.5 915.5,-578.5 915.5,-526.5 1013.5,-526.5 1013.5,-578.5"/>
<text text-anchor="middle" x="964.5" y="-566.5" font-family="Times,serif" font-size="10.00">v8</text>
<text text-anchor="middle" x="964.5" y="-555.5" font-family="Times,serif" font-size="10.00">V8</text>
<text text-anchor="middle" x="964.5" y="-544.5" font-family="Times,serif" font-size="10.00">GlobalizeReference</text>
<text text-anchor="middle" x="964.5" y="-533.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N21&#45;&gt;N29 -->
<g id="edge93" class="edge"><title>N21&#45;&gt;N29</title>
<g id="a_edge93"><a xlink:title="blink::V8ScriptRunner::CompileModule ... v8::V8::GlobalizeReference (0.01s)">
<path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1054.37,-639.36C1038.42,-624.119 1016.59,-603.265 998.441,-585.926"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="1000.56,-583.114 990.916,-578.737 995.729,-588.175 1000.56,-583.114"/>
</a>
</g>
<g id="a_edge93&#45;label"><a xlink:title="blink::V8ScriptRunner::CompileModule ... v8::V8::GlobalizeReference (0.01s)">
<text text-anchor="middle" x="1048.5" y="-605.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N22&#45;&gt;N9 -->
<g id="edge94" class="edge"><title>N22&#45;&gt;N9</title>
<g id="a_edge94"><a xlink:title="v8::base::TemplateHashMapImpl::LookupOrInsert &#45;&gt; &lt;unknown&gt; (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M1154.67,-200.961C1140.35,-166.095 1114.68,-116.157 1076.5,-87 1017.18,-41.7011 795.213,-25.9426 693.276,-21.0161"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="693.362,-17.5164 683.21,-20.5461 693.036,-24.5088 693.362,-17.5164"/>
</a>
</g>
<g id="a_edge94&#45;label"><a xlink:title="v8::base::TemplateHashMapImpl::LookupOrInsert &#45;&gt; &lt;unknown&gt; (0.01s)">
<text text-anchor="middle" x="1145.5" y="-114.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N24 -->
<g id="node24" class="node"><title>N24</title>
<g id="a_node24"><a xlink:title="WTF::AtomicStringTable::AddUTF8 (0.08s)">
<polygon fill="#edecec" stroke="#b2b0aa" points="604,-574.5 525,-574.5 525,-530.5 604,-530.5 604,-574.5"/>
<text text-anchor="middle" x="564.5" y="-564.1" font-family="Times,serif" font-size="8.00">WTF</text>
<text text-anchor="middle" x="564.5" y="-555.1" font-family="Times,serif" font-size="8.00">AtomicStringTable</text>
<text text-anchor="middle" x="564.5" y="-546.1" font-family="Times,serif" font-size="8.00">AddUTF8</text>
<text text-anchor="middle" x="564.5" y="-537.1" font-family="Times,serif" font-size="8.00">0 of 0.08s (0.91%)</text>
</a>
</g>
</g>
<!-- N24&#45;&gt;N11 -->
<g id="edge49" class="edge"><title>N24&#45;&gt;N11</title>
<g id="a_edge49"><a xlink:title="WTF::AtomicStringTable::AddUTF8 &#45;&gt; WTF::HashTable::InsertPassingHashCode (0.05s)">
<path fill="none" stroke="#b2b1ad" d="M547.985,-530.397C529.811,-507.175 500.211,-469.353 477.833,-440.759"/>
<polygon fill="#b2b1ad" stroke="#b2b1ad" points="480.355,-438.302 471.435,-432.584 474.842,-442.616 480.355,-438.302"/>
</a>
</g>
<g id="a_edge49&#45;label"><a xlink:title="WTF::AtomicStringTable::AddUTF8 &#45;&gt; WTF::HashTable::InsertPassingHashCode (0.05s)">
<text text-anchor="middle" x="540.5" y="-491.8" font-family="Times,serif" font-size="14.00"> 0.05s</text>
</a>
</g>
</g>
<!-- N28 -->
<g id="node28" class="node"><title>N28</title>
<g id="a_node28"><a xlink:title="WTF::Unicode::CalculateStringHashAndLengthFromUTF8MaskingTop8Bits (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="809,-429 522,-429 522,-373 809,-373 809,-429"/>
<text text-anchor="middle" x="665.5" y="-416.2" font-family="Times,serif" font-size="11.00">WTF</text>
<text text-anchor="middle" x="665.5" y="-404.2" font-family="Times,serif" font-size="11.00">Unicode</text>
<text text-anchor="middle" x="665.5" y="-392.2" font-family="Times,serif" font-size="11.00">CalculateStringHashAndLengthFromUTF8MaskingTop8Bits</text>
<text text-anchor="middle" x="665.5" y="-380.2" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N24&#45;&gt;N28 -->
<g id="edge54" class="edge"><title>N24&#45;&gt;N28</title>
<g id="a_edge54"><a xlink:title="WTF::AtomicStringTable::AddUTF8 &#45;&gt; WTF::Unicode::CalculateStringHashAndLengthFromUTF8MaskingTop8Bits (0.03s)">
<path fill="none" stroke="#b2b1af" d="M578.757,-530.397C595.019,-506.326 621.878,-466.569 641.407,-437.662"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="644.514,-439.315 647.212,-429.069 638.714,-435.396 644.514,-439.315"/>
</a>
</g>
<g id="a_edge54&#45;label"><a xlink:title="WTF::AtomicStringTable::AddUTF8 &#45;&gt; WTF::Unicode::CalculateStringHashAndLengthFromUTF8MaskingTop8Bits (0.03s)">
<text text-anchor="middle" x="623.5" y="-491.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N27 -->
<g id="node27" class="node"><title>N27</title>
<g id="a_node27"><a xlink:title="(anonymous namespace)::do_malloc (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="613.5,-140.5 487.5,-140.5 487.5,-96.5 613.5,-96.5 613.5,-140.5"/>
<text text-anchor="middle" x="550.5" y="-127.7" font-family="Times,serif" font-size="11.00">(anonymous namespace)</text>
<text text-anchor="middle" x="550.5" y="-115.7" font-family="Times,serif" font-size="11.00">do_malloc</text>
<text text-anchor="middle" x="550.5" y="-103.7" font-family="Times,serif" font-size="11.00">0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N25&#45;&gt;N27 -->
<g id="edge61" class="edge"><title>N25&#45;&gt;N27</title>
<g id="a_edge61"><a xlink:title="operator new ... (anonymous namespace)::do_malloc (0.03s)">
<path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M550.5,-220.371C550.5,-201.573 550.5,-172.9 550.5,-150.922"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="554,-150.744 550.5,-140.744 547,-150.744 554,-150.744"/>
</a>
</g>
<g id="a_edge61&#45;label"><a xlink:title="operator new ... (anonymous namespace)::do_malloc (0.03s)">
<text text-anchor="middle" x="567.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N26 -->
<g id="node26" class="node"><title>N26</title>
<g id="a_node26"><a xlink:title="WTF::AtomicString::AtomicString (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="518,-804.5 435,-804.5 435,-741.5 518,-741.5 518,-804.5"/>
<text text-anchor="middle" x="476.5" y="-792.5" font-family="Times,serif" font-size="10.00">WTF</text>
<text text-anchor="middle" x="476.5" y="-781.5" font-family="Times,serif" font-size="10.00">AtomicString</text>
<text text-anchor="middle" x="476.5" y="-770.5" font-family="Times,serif" font-size="10.00">AtomicString</text>
<text text-anchor="middle" x="476.5" y="-759.5" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="476.5" y="-748.5" font-family="Times,serif" font-size="10.00">of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N26&#45;&gt;N16 -->
<g id="edge65" class="edge"><title>N26&#45;&gt;N16</title>
<g id="a_edge65"><a xlink:title="WTF::AtomicString::AtomicString &#45;&gt; WTF::AtomicStringTable::Add (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M449.759,-741.498C436.058,-725.871 419.461,-706.94 405.949,-691.528"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="408.421,-689.038 399.197,-683.826 403.157,-693.653 408.421,-689.038"/>
</a>
</g>
<g id="a_edge65&#45;label"><a xlink:title="WTF::AtomicString::AtomicString &#45;&gt; WTF::AtomicStringTable::Add (0.02s)">
<text text-anchor="middle" x="448.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N30 -->
<g id="node30" class="node"><title>N30</title>
<g id="a_node30"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="144.5,-427.5 30.5,-427.5 30.5,-374.5 144.5,-374.5 144.5,-427.5"/>
<text text-anchor="middle" x="87.5" y="-417.1" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="87.5" y="-408.1" font-family="Times,serif" font-size="8.00">edk</text>
<text text-anchor="middle" x="87.5" y="-399.1" font-family="Times,serif" font-size="8.00">DataPipeConsumerDispatcher</text>
<text text-anchor="middle" x="87.5" y="-390.1" font-family="Times,serif" font-size="8.00">CloseNoLock</text>
<text text-anchor="middle" x="87.5" y="-381.1" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N53 -->
<g id="node53" class="node"><title>N53</title>
<g id="a_node53"><a xlink:title="base::SharedMemory::Unmap (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="77,-263 0,-263 0,-219 77,-219 77,-263"/>
<text text-anchor="middle" x="38.5" y="-252.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="38.5" y="-243.6" font-family="Times,serif" font-size="8.00">SharedMemory</text>
<text text-anchor="middle" x="38.5" y="-234.6" font-family="Times,serif" font-size="8.00">Unmap</text>
<text text-anchor="middle" x="38.5" y="-225.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N30&#45;&gt;N53 -->
<g id="edge82" class="edge"><title>N30&#45;&gt;N53</title>
<g id="a_edge82"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... base::SharedMemory::Unmap (0.02s)">
<path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M79.5182,-374.263C70.9308,-346.573 57.2753,-302.541 48.1057,-272.974"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="51.3701,-271.683 45.0651,-263.169 44.6843,-273.757 51.3701,-271.683"/>
</a>
</g>
<g id="a_edge82&#45;label"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock ... base::SharedMemory::Unmap (0.02s)">
<text text-anchor="middle" x="77.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N80 -->
<g id="node80" class="node"><title>N80</title>
<g id="a_node80"><a xlink:title="mojo::edk::PlatformSharedBuffer::~PlatformSharedBuffer (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="189.5,-267.5 95.5,-267.5 95.5,-214.5 189.5,-214.5 189.5,-267.5"/>
<text text-anchor="middle" x="142.5" y="-257.1" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="142.5" y="-248.1" font-family="Times,serif" font-size="8.00">edk</text>
<text text-anchor="middle" x="142.5" y="-239.1" font-family="Times,serif" font-size="8.00">PlatformSharedBuffer</text>
<text text-anchor="middle" x="142.5" y="-230.1" font-family="Times,serif" font-size="8.00">~PlatformSharedBuffer</text>
<text text-anchor="middle" x="142.5" y="-221.1" font-family="Times,serif" font-size="8.00">0 of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N30&#45;&gt;N80 -->
<g id="edge59" class="edge"><title>N30&#45;&gt;N80</title>
<g id="a_edge59"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock &#45;&gt; mojo::edk::PlatformSharedBuffer::~PlatformSharedBuffer (0.03s)">
<path fill="none" stroke="#b2b1af" d="M96.4591,-374.263C105.648,-347.866 120.006,-306.618 130.244,-277.208"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="133.563,-278.321 133.545,-267.726 126.952,-276.02 133.563,-278.321"/>
</a>
</g>
<g id="a_edge59&#45;label"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::CloseNoLock &#45;&gt; mojo::edk::PlatformSharedBuffer::~PlatformSharedBuffer (0.03s)">
<text text-anchor="middle" x="139.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N45 -->
<g id="node45" class="node"><title>N45</title>
<g id="a_node45"><a xlink:title="WTF::AtomicString::AddSlowCase (0.04s)">
<polygon fill="#ededec" stroke="#b2b1ae" points="417,-795 340,-795 340,-751 417,-751 417,-795"/>
<text text-anchor="middle" x="378.5" y="-784.6" font-family="Times,serif" font-size="8.00">WTF</text>
<text text-anchor="middle" x="378.5" y="-775.6" font-family="Times,serif" font-size="8.00">AtomicString</text>
<text text-anchor="middle" x="378.5" y="-766.6" font-family="Times,serif" font-size="8.00">AddSlowCase</text>
<text text-anchor="middle" x="378.5" y="-757.6" font-family="Times,serif" font-size="8.00">0 of 0.04s (0.46%)</text>
</a>
</g>
</g>
<!-- N31&#45;&gt;N45 -->
<g id="edge53" class="edge"><title>N31&#45;&gt;N45</title>
<g id="a_edge53"><a xlink:title="blink::ScriptResource::SourceText &#45;&gt; WTF::AtomicString::AddSlowCase (0.04s)">
<path fill="none" stroke="#b2b1ae" d="M302.725,-857.752C317.018,-841.954 336.681,-820.221 352.395,-802.853"/>
<polygon fill="#b2b1ae" stroke="#b2b1ae" points="355.19,-804.98 359.304,-795.217 349.999,-800.284 355.19,-804.98"/>
</a>
</g>
<g id="a_edge53&#45;label"><a xlink:title="blink::ScriptResource::SourceText &#45;&gt; WTF::AtomicString::AddSlowCase (0.04s)">
<text text-anchor="middle" x="348.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.04s</text>
</a>
</g>
</g>
<!-- N61 -->
<g id="node61" class="node"><title>N61</title>
<g id="a_node61"><a xlink:title="blink::TextResource::DecodedText (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="322,-795 245,-795 245,-751 322,-751 322,-795"/>
<text text-anchor="middle" x="283.5" y="-784.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="283.5" y="-775.6" font-family="Times,serif" font-size="8.00">TextResource</text>
<text text-anchor="middle" x="283.5" y="-766.6" font-family="Times,serif" font-size="8.00">DecodedText</text>
<text text-anchor="middle" x="283.5" y="-757.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N31&#45;&gt;N61 -->
<g id="edge81" class="edge"><title>N31&#45;&gt;N61</title>
<g id="a_edge81"><a xlink:title="blink::ScriptResource::SourceText &#45;&gt; blink::TextResource::DecodedText (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M283.5,-857.752C283.5,-842.666 283.5,-822.167 283.5,-805.225"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="287,-805.217 283.5,-795.217 280,-805.217 287,-805.217"/>
</a>
</g>
<g id="a_edge81&#45;label"><a xlink:title="blink::ScriptResource::SourceText &#45;&gt; blink::TextResource::DecodedText (0.02s)">
<text text-anchor="middle" x="300.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N42 -->
<g id="node42" class="node"><title>N42</title>
<g id="a_node42"><a xlink:title="blink::Resource::DidRemoveClientOrObserver (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="549,-997 436,-997 436,-953 549,-953 549,-997"/>
<text text-anchor="middle" x="492.5" y="-986.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="492.5" y="-977.6" font-family="Times,serif" font-size="8.00">Resource</text>
<text text-anchor="middle" x="492.5" y="-968.6" font-family="Times,serif" font-size="8.00">DidRemoveClientOrObserver</text>
<text text-anchor="middle" x="492.5" y="-959.6" font-family="Times,serif" font-size="8.00">0 of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N32&#45;&gt;N42 -->
<g id="edge57" class="edge"><title>N32&#45;&gt;N42</title>
<g id="a_edge57"><a xlink:title="blink::Resource::RemoveClient &#45;&gt; blink::Resource::DidRemoveClientOrObserver (0.03s)">
<path fill="none" stroke="#b2b1af" d="M648.993,-1057.01C617.897,-1040.91 575.22,-1018.82 542.287,-1001.77"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="543.764,-998.597 533.274,-997.108 540.546,-1004.81 543.764,-998.597"/>
</a>
</g>
<g id="a_edge57&#45;label"><a xlink:title="blink::Resource::RemoveClient &#45;&gt; blink::Resource::DidRemoveClientOrObserver (0.03s)">
<text text-anchor="middle" x="608.5" y="-1018.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N33 -->
<g id="node33" class="node"><title>N33</title>
<g id="a_node33"><a xlink:title="WTF::Unicode::ConvertUTF8ToUTF16 (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="469.5,-144.5 355.5,-144.5 355.5,-92.5 469.5,-92.5 469.5,-144.5"/>
<text text-anchor="middle" x="412.5" y="-132.5" font-family="Times,serif" font-size="10.00">WTF</text>
<text text-anchor="middle" x="412.5" y="-121.5" font-family="Times,serif" font-size="10.00">Unicode</text>
<text text-anchor="middle" x="412.5" y="-110.5" font-family="Times,serif" font-size="10.00">ConvertUTF8ToUTF16</text>
<text text-anchor="middle" x="412.5" y="-99.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N35 -->
<g id="node35" class="node"><title>N35</title>
<g id="a_node35"><a xlink:title="madvise (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="1068,-136.5 995,-136.5 995,-100.5 1068,-100.5 1068,-136.5"/>
<text text-anchor="middle" x="1031.5" y="-121.5" font-family="Times,serif" font-size="10.00">madvise</text>
<text text-anchor="middle" x="1031.5" y="-110.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N37 -->
<g id="node37" class="node"><title>N37</title>
<g id="a_node37"><a xlink:title="v8::Module::GetModuleRequestLocation (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="903.5,-687.5 769.5,-687.5 769.5,-635.5 903.5,-635.5 903.5,-687.5"/>
<text text-anchor="middle" x="836.5" y="-675.5" font-family="Times,serif" font-size="10.00">v8</text>
<text text-anchor="middle" x="836.5" y="-664.5" font-family="Times,serif" font-size="10.00">Module</text>
<text text-anchor="middle" x="836.5" y="-653.5" font-family="Times,serif" font-size="10.00">GetModuleRequestLocation</text>
<text text-anchor="middle" x="836.5" y="-642.5" font-family="Times,serif" font-size="10.00">0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N38&#45;&gt;N35 -->
<g id="edge64" class="edge"><title>N38&#45;&gt;N35</title>
<g id="a_edge64"><a xlink:title="(anonymous namespace)::do_free_with_callback ... madvise (0.02s)">
<path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1031.5,-214.739C1031.5,-194.85 1031.5,-167.175 1031.5,-146.781"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="1035,-146.579 1031.5,-136.579 1028,-146.579 1035,-146.579"/>
</a>
</g>
<g id="a_edge64&#45;label"><a xlink:title="(anonymous namespace)::do_free_with_callback ... madvise (0.02s)">
<text text-anchor="middle" x="1048.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N39 -->
<g id="node39" class="node"><title>N39</title>
<g id="a_node39"><a xlink:title="WTF::HashTable::Rehash (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="881,-150 798,-150 798,-87 881,-87 881,-150"/>
<text text-anchor="middle" x="839.5" y="-138" font-family="Times,serif" font-size="10.00">WTF</text>
<text text-anchor="middle" x="839.5" y="-127" font-family="Times,serif" font-size="10.00">HashTable</text>
<text text-anchor="middle" x="839.5" y="-116" font-family="Times,serif" font-size="10.00">Rehash</text>
<text text-anchor="middle" x="839.5" y="-105" font-family="Times,serif" font-size="10.00">0.01s (0.11%)</text>
<text text-anchor="middle" x="839.5" y="-94" font-family="Times,serif" font-size="10.00">of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N41&#45;&gt;N15 -->
<g id="edge70" class="edge"><title>N41&#45;&gt;N15</title>
<g id="a_edge70"><a xlink:title="base::SequencedTaskRunner::DeleteOrReleaseSoonInternal &#45;&gt; syscall (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M220.627,-378.917C223.304,-328.869 230.039,-202.919 233.03,-146.992"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="236.537,-146.956 233.576,-136.784 229.547,-146.583 236.537,-146.956"/>
</a>
</g>
<g id="a_edge70&#45;label"><a xlink:title="base::SequencedTaskRunner::DeleteOrReleaseSoonInternal &#45;&gt; syscall (0.02s)">
<text text-anchor="middle" x="247.5" y="-237.3" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N41&#45;&gt;N25 -->
<g id="edge87" class="edge"><title>N41&#45;&gt;N25</title>
<g id="a_edge87"><a xlink:title="base::SequencedTaskRunner::DeleteOrReleaseSoonInternal ... operator new (0.01s)">
<path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M236.82,-378.949C250.123,-363.99 269.692,-344.427 290.5,-332 331.407,-307.57 346.262,-310.501 392.5,-299 437.173,-287.888 451.949,-298.565 494.5,-281 502.843,-277.556 511.181,-272.707 518.776,-267.596"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="521.178,-270.183 527.308,-261.542 517.127,-264.474 521.178,-270.183"/>
</a>
</g>
<g id="a_edge87&#45;label"><a xlink:title="base::SequencedTaskRunner::DeleteOrReleaseSoonInternal ... operator new (0.01s)">
<text text-anchor="middle" x="409.5" y="-302.8" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N42&#45;&gt;N26 -->
<g id="edge89" class="edge"><title>N42&#45;&gt;N26</title>
<g id="a_edge89"><a xlink:title="blink::Resource::DidRemoveClientOrObserver &#45;&gt; WTF::AtomicString::AtomicString (0.01s)">
<path fill="none" stroke="#b2b2b1" d="M490.818,-952.975C488.207,-920.337 483.131,-856.887 479.778,-814.977"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="483.252,-814.507 478.965,-804.818 476.274,-815.065 483.252,-814.507"/>
</a>
</g>
<g id="a_edge89&#45;label"><a xlink:title="blink::Resource::DidRemoveClientOrObserver &#45;&gt; WTF::AtomicString::AtomicString (0.01s)">
<text text-anchor="middle" x="504.5" y="-876.3" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N58 -->
<g id="node58" class="node"><title>N58</title>
<g id="a_node58"><a xlink:title="blink::ResourceResponse::CacheControlContainsNoStore (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="456.5,-902 340.5,-902 340.5,-858 456.5,-858 456.5,-902"/>
<text text-anchor="middle" x="398.5" y="-891.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="398.5" y="-882.6" font-family="Times,serif" font-size="8.00">ResourceResponse</text>
<text text-anchor="middle" x="398.5" y="-873.6" font-family="Times,serif" font-size="8.00">CacheControlContainsNoStore</text>
<text text-anchor="middle" x="398.5" y="-864.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N42&#45;&gt;N58 -->
<g id="edge76" class="edge"><title>N42&#45;&gt;N58</title>
<g id="a_edge76"><a xlink:title="blink::Resource::DidRemoveClientOrObserver &#45;&gt; blink::ResourceResponse::CacheControlContainsNoStore (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M464.848,-952.968C457.986,-947.366 450.798,-941.153 444.5,-935 436.556,-927.239 428.501,-918.245 421.398,-909.849"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="423.997,-907.5 414.915,-902.044 418.612,-911.973 423.997,-907.5"/>
</a>
</g>
<g id="a_edge76&#45;label"><a xlink:title="blink::Resource::DidRemoveClientOrObserver &#45;&gt; blink::ResourceResponse::CacheControlContainsNoStore (0.02s)">
<text text-anchor="middle" x="461.5" y="-923.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N43&#45;&gt;N39 -->
<g id="edge68" class="edge"><title>N43&#45;&gt;N39</title>
<g id="a_edge68"><a xlink:title="WTF::HashTable::Expand &#45;&gt; WTF::HashTable::Rehash (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M839.5,-218.734C839.5,-202.584 839.5,-179.884 839.5,-160.27"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="843,-160.05 839.5,-150.05 836,-160.05 843,-160.05"/>
</a>
</g>
<g id="a_edge68&#45;label"><a xlink:title="WTF::HashTable::Expand &#45;&gt; WTF::HashTable::Rehash (0.02s)">
<text text-anchor="middle" x="856.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N64 -->
<g id="node64" class="node"><title>N64</title>
<g id="a_node64"><a xlink:title="content::ContentMain (1.79s)">
<polygon fill="#edded5" stroke="#b24300" points="1215.5,-2965 1135.5,-2965 1135.5,-2929 1215.5,-2929 1215.5,-2965"/>
<text text-anchor="middle" x="1175.5" y="-2954.1" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1175.5" y="-2945.1" font-family="Times,serif" font-size="8.00">ContentMain</text>
<text text-anchor="middle" x="1175.5" y="-2936.1" font-family="Times,serif" font-size="8.00">0 of 1.79s (20.43%)</text>
</a>
</g>
</g>
<!-- N44&#45;&gt;N64 -->
<g id="edge17" class="edge"><title>N44&#45;&gt;N64</title>
<g id="a_edge17"><a xlink:title="ChromeMain &#45;&gt; content::ContentMain (1.77s)">
<path fill="none" stroke="#b24400" stroke-width="2" d="M1175.5,-3015.8C1175.5,-3004.16 1175.5,-2988.55 1175.5,-2975.24"/>
<polygon fill="#b24400" stroke="#b24400" stroke-width="2" points="1179,-2975.18 1175.5,-2965.18 1172,-2975.18 1179,-2975.18"/>
</a>
</g>
<g id="a_edge17&#45;label"><a xlink:title="ChromeMain &#45;&gt; content::ContentMain (1.77s)">
<text text-anchor="middle" x="1192.5" y="-2986.8" font-family="Times,serif" font-size="14.00"> 1.77s</text>
</a>
</g>
</g>
<!-- N45&#45;&gt;N16 -->
<g id="edge51" class="edge"><title>N45&#45;&gt;N16</title>
<g id="a_edge51"><a xlink:title="WTF::AtomicString::AddSlowCase &#45;&gt; WTF::AtomicStringTable::Add (0.04s)">
<path fill="none" stroke="#b2b1ae" d="M378.886,-750.887C379.182,-734.679 379.595,-712.048 379.929,-693.744"/>
<polygon fill="#b2b1ae" stroke="#b2b1ae" points="383.432,-693.61 380.116,-683.548 376.433,-693.482 383.432,-693.61"/>
</a>
</g>
<g id="a_edge51&#45;label"><a xlink:title="WTF::AtomicString::AddSlowCase &#45;&gt; WTF::AtomicStringTable::Add (0.04s)">
<text text-anchor="middle" x="397.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.04s</text>
</a>
</g>
</g>
<!-- N46&#45;&gt;N24 -->
<g id="edge40" class="edge"><title>N46&#45;&gt;N24</title>
<g id="a_edge40"><a xlink:title="WTF::AtomicString::FromUTF8 &#45;&gt; WTF::AtomicStringTable::AddUTF8 (0.08s)">
<path fill="none" stroke="#b2b0aa" d="M493.886,-639.36C507.265,-623.093 525.902,-600.432 540.67,-582.475"/>
<polygon fill="#b2b0aa" stroke="#b2b0aa" points="543.501,-584.543 547.15,-574.596 538.095,-580.096 543.501,-584.543"/>
</a>
</g>
<g id="a_edge40&#45;label"><a xlink:title="WTF::AtomicString::FromUTF8 &#45;&gt; WTF::AtomicStringTable::AddUTF8 (0.08s)">
<text text-anchor="middle" x="540.5" y="-605.8" font-family="Times,serif" font-size="14.00"> 0.08s</text>
</a>
</g>
</g>
<!-- N47&#45;&gt;N33 -->
<g id="edge67" class="edge"><title>N47&#45;&gt;N33</title>
<g id="a_edge67"><a xlink:title="WTF::HashAndUTF8CharactersTranslator::Translate &#45;&gt; WTF::Unicode::ConvertUTF8ToUTF16 (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M417.441,-218.734C416.56,-201.048 415.289,-175.506 414.256,-154.766"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="417.749,-154.539 413.756,-144.725 410.758,-154.887 417.749,-154.539"/>
</a>
</g>
<g id="a_edge67&#45;label"><a xlink:title="WTF::HashAndUTF8CharactersTranslator::Translate &#45;&gt; WTF::Unicode::ConvertUTF8ToUTF16 (0.02s)">
<text text-anchor="middle" x="432.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N48 -->
<g id="node48" class="node"><title>N48</title>
<g id="a_node48"><a xlink:title="base::MessageLoop::DoWork (1.94s)">
<polygon fill="#edded5" stroke="#b24000" points="1215.5,-2419 1135.5,-2419 1135.5,-2375 1215.5,-2375 1215.5,-2419"/>
<text text-anchor="middle" x="1175.5" y="-2408.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="1175.5" y="-2399.6" font-family="Times,serif" font-size="8.00">MessageLoop</text>
<text text-anchor="middle" x="1175.5" y="-2390.6" font-family="Times,serif" font-size="8.00">DoWork</text>
<text text-anchor="middle" x="1175.5" y="-2381.6" font-family="Times,serif" font-size="8.00">0 of 1.94s (22.15%)</text>
</a>
</g>
</g>
<!-- N49 -->
<g id="node49" class="node"><title>N49</title>
<g id="a_node49"><a xlink:title="base::MessageLoop::RunTask (1.94s)">
<polygon fill="#edded5" stroke="#b24000" points="1215.5,-2324 1135.5,-2324 1135.5,-2280 1215.5,-2280 1215.5,-2324"/>
<text text-anchor="middle" x="1175.5" y="-2313.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="1175.5" y="-2304.6" font-family="Times,serif" font-size="8.00">MessageLoop</text>
<text text-anchor="middle" x="1175.5" y="-2295.6" font-family="Times,serif" font-size="8.00">RunTask</text>
<text text-anchor="middle" x="1175.5" y="-2286.6" font-family="Times,serif" font-size="8.00">0 of 1.94s (22.15%)</text>
</a>
</g>
</g>
<!-- N48&#45;&gt;N49 -->
<g id="edge7" class="edge"><title>N48&#45;&gt;N49</title>
<g id="a_edge7"><a xlink:title="base::MessageLoop::DoWork &#45;&gt; base::MessageLoop::RunTask (1.94s)">
<path fill="none" stroke="#b24000" stroke-width="2" d="M1175.5,-2374.9C1175.5,-2362.89 1175.5,-2347.62 1175.5,-2334.24"/>
<polygon fill="#b24000" stroke="#b24000" stroke-width="2" points="1179,-2334.02 1175.5,-2324.02 1172,-2334.02 1179,-2334.02"/>
</a>
</g>
<g id="a_edge7&#45;label"><a xlink:title="base::MessageLoop::DoWork &#45;&gt; base::MessageLoop::RunTask (1.94s)">
<text text-anchor="middle" x="1192.5" y="-2345.8" font-family="Times,serif" font-size="14.00"> 1.94s</text>
</a>
</g>
</g>
<!-- N49&#45;&gt;N1 -->
<g id="edge8" class="edge"><title>N49&#45;&gt;N1</title>
<g id="a_edge8"><a xlink:title="base::MessageLoop::RunTask &#45;&gt; base::debug::TaskAnnotator::RunTask (1.94s)">
<path fill="none" stroke="#b24000" stroke-width="2" d="M1175.5,-2279.84C1175.5,-2267.97 1175.5,-2252.85 1175.5,-2239.19"/>
<polygon fill="#b24000" stroke="#b24000" stroke-width="2" points="1179,-2239.12 1175.5,-2229.12 1172,-2239.12 1179,-2239.12"/>
</a>
</g>
<g id="a_edge8&#45;label"><a xlink:title="base::MessageLoop::RunTask &#45;&gt; base::debug::TaskAnnotator::RunTask (1.94s)">
<text text-anchor="middle" x="1192.5" y="-2250.8" font-family="Times,serif" font-size="14.00"> 1.94s</text>
</a>
</g>
</g>
<!-- N50 -->
<g id="node50" class="node"><title>N50</title>
<g id="a_node50"><a xlink:title="base::MessagePumpDefault::Run (1.90s)">
<polygon fill="#edded5" stroke="#b24100" points="1219,-2514 1132,-2514 1132,-2470 1219,-2470 1219,-2514"/>
<text text-anchor="middle" x="1175.5" y="-2503.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="1175.5" y="-2494.6" font-family="Times,serif" font-size="8.00">MessagePumpDefault</text>
<text text-anchor="middle" x="1175.5" y="-2485.6" font-family="Times,serif" font-size="8.00">Run</text>
<text text-anchor="middle" x="1175.5" y="-2476.6" font-family="Times,serif" font-size="8.00">0 of 1.90s (21.69%)</text>
</a>
</g>
</g>
<!-- N50&#45;&gt;N48 -->
<g id="edge9" class="edge"><title>N50&#45;&gt;N48</title>
<g id="a_edge9"><a xlink:title="base::MessagePumpDefault::Run &#45;&gt; base::MessageLoop::DoWork (1.90s)">
<path fill="none" stroke="#b24100" stroke-width="2" d="M1175.5,-2469.9C1175.5,-2457.89 1175.5,-2442.62 1175.5,-2429.24"/>
<polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="1179,-2429.02 1175.5,-2419.02 1172,-2429.02 1179,-2429.02"/>
</a>
</g>
<g id="a_edge9&#45;label"><a xlink:title="base::MessagePumpDefault::Run &#45;&gt; base::MessageLoop::DoWork (1.90s)">
<text text-anchor="middle" x="1192.5" y="-2440.8" font-family="Times,serif" font-size="14.00"> 1.90s</text>
</a>
</g>
</g>
<!-- N51 -->
<g id="node51" class="node"><title>N51</title>
<g id="a_node51"><a xlink:title="base::RunLoop::Run (1.90s)">
<polygon fill="#edded5" stroke="#b24100" points="1215.5,-2609 1135.5,-2609 1135.5,-2565 1215.5,-2565 1215.5,-2609"/>
<text text-anchor="middle" x="1175.5" y="-2598.6" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="1175.5" y="-2589.6" font-family="Times,serif" font-size="8.00">RunLoop</text>
<text text-anchor="middle" x="1175.5" y="-2580.6" font-family="Times,serif" font-size="8.00">Run</text>
<text text-anchor="middle" x="1175.5" y="-2571.6" font-family="Times,serif" font-size="8.00">0 of 1.90s (21.69%)</text>
</a>
</g>
</g>
<!-- N51&#45;&gt;N50 -->
<g id="edge10" class="edge"><title>N51&#45;&gt;N50</title>
<g id="a_edge10"><a xlink:title="base::RunLoop::Run &#45;&gt; base::MessagePumpDefault::Run (1.90s)">
<path fill="none" stroke="#b24100" stroke-width="2" d="M1175.5,-2564.9C1175.5,-2552.89 1175.5,-2537.62 1175.5,-2524.24"/>
<polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="1179,-2524.02 1175.5,-2514.02 1172,-2524.02 1179,-2524.02"/>
</a>
</g>
<g id="a_edge10&#45;label"><a xlink:title="base::RunLoop::Run &#45;&gt; base::MessagePumpDefault::Run (1.90s)">
<text text-anchor="middle" x="1192.5" y="-2535.8" font-family="Times,serif" font-size="14.00"> 1.90s</text>
</a>
</g>
</g>
<!-- N52 -->
<g id="node52" class="node"><title>N52</title>
<g id="a_node52"><a xlink:title="base::SharedMemory::Close (0.03s)">
<polygon fill="#ededec" stroke="#b2b1af" points="177,-140.5 100,-140.5 100,-96.5 177,-96.5 177,-140.5"/>
<text text-anchor="middle" x="138.5" y="-130.1" font-family="Times,serif" font-size="8.00">base</text>
<text text-anchor="middle" x="138.5" y="-121.1" font-family="Times,serif" font-size="8.00">SharedMemory</text>
<text text-anchor="middle" x="138.5" y="-112.1" font-family="Times,serif" font-size="8.00">Close</text>
<text text-anchor="middle" x="138.5" y="-103.1" font-family="Times,serif" font-size="8.00">0 of 0.03s (0.34%)</text>
</a>
</g>
</g>
<!-- N52&#45;&gt;N9 -->
<g id="edge55" class="edge"><title>N52&#45;&gt;N9</title>
<g id="a_edge55"><a xlink:title="base::SharedMemory::Close &#45;&gt; &lt;unknown&gt; (0.03s)">
<path fill="none" stroke="#b2b1af" d="M170.362,-96.4564C194.947,-81.4885 230.41,-62.5742 264.5,-54 377.968,-25.4608 515.904,-19.6877 589.429,-18.8193"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="589.831,-22.3158 599.798,-18.7246 589.767,-15.3161 589.831,-22.3158"/>
</a>
</g>
<g id="a_edge55&#45;label"><a xlink:title="base::SharedMemory::Close &#45;&gt; &lt;unknown&gt; (0.03s)">
<text text-anchor="middle" x="281.5" y="-57.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
<!-- N53&#45;&gt;N15 -->
<g id="edge71" class="edge"><title>N53&#45;&gt;N15</title>
<g id="a_edge71"><a xlink:title="base::SharedMemory::Unmap &#45;&gt; syscall (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M51.883,-218.703C63.322,-202.303 81.2738,-180.404 102.5,-168 135.09,-148.955 150.519,-164.182 185.5,-150 190.973,-147.781 196.523,-144.967 201.825,-141.95"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="203.696,-144.909 210.455,-136.75 200.084,-138.913 203.696,-144.909"/>
</a>
</g>
<g id="a_edge71&#45;label"><a xlink:title="base::SharedMemory::Unmap &#45;&gt; syscall (0.02s)">
<text text-anchor="middle" x="119.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N54&#45;&gt;N13 -->
<g id="edge33" class="edge"><title>N54&#45;&gt;N13</title>
<g id="a_edge33"><a xlink:title="blink::Modulator::ResolveModuleSpecifier &#45;&gt; blink::KURL::Init (0.13s)">
<path fill="none" stroke="#b2aea5" d="M592.5,-857.752C592.5,-842.666 592.5,-822.167 592.5,-805.225"/>
<polygon fill="#b2aea5" stroke="#b2aea5" points="596,-805.217 592.5,-795.217 589,-805.217 596,-805.217"/>
</a>
</g>
<g id="a_edge33&#45;label"><a xlink:title="blink::Modulator::ResolveModuleSpecifier &#45;&gt; blink::KURL::Init (0.13s)">
<text text-anchor="middle" x="609.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.13s</text>
</a>
</g>
</g>
<!-- N55&#45;&gt;N20 -->
<g id="edge22" class="edge"><title>N55&#45;&gt;N20</title>
<g id="a_edge22"><a xlink:title="blink::ModulatorImplBase::CompileModule &#45;&gt; blink::ScriptModule::Compile (1.52s)">
<path fill="none" stroke="#b25617" d="M1076.5,-857.752C1076.5,-842.666 1076.5,-822.167 1076.5,-805.225"/>
<polygon fill="#b25617" stroke="#b25617" points="1080,-805.217 1076.5,-795.217 1073,-805.217 1080,-805.217"/>
</a>
</g>
<g id="a_edge22&#45;label"><a xlink:title="blink::ModulatorImplBase::CompileModule &#45;&gt; blink::ScriptModule::Compile (1.52s)">
<text text-anchor="middle" x="1093.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 1.52s</text>
</a>
</g>
</g>
<!-- N59 -->
<g id="node59" class="node"><title>N59</title>
<g id="a_node59"><a xlink:title="blink::ScriptModule::ModuleRequestPositions (0.02s)">
<polygon fill="#ededec" stroke="#b2b2b0" points="856,-795 761,-795 761,-751 856,-751 856,-795"/>
<text text-anchor="middle" x="808.5" y="-784.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="808.5" y="-775.6" font-family="Times,serif" font-size="8.00">ScriptModule</text>
<text text-anchor="middle" x="808.5" y="-766.6" font-family="Times,serif" font-size="8.00">ModuleRequestPositions</text>
<text text-anchor="middle" x="808.5" y="-757.6" font-family="Times,serif" font-size="8.00">0 of 0.02s (0.23%)</text>
</a>
</g>
</g>
<!-- N56&#45;&gt;N59 -->
<g id="edge73" class="edge"><title>N56&#45;&gt;N59</title>
<g id="a_edge73"><a xlink:title="blink::ModulatorImplBase::ModuleRequestsFromScriptModule &#45;&gt; blink::ScriptModule::ModuleRequestPositions (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M740.701,-857.752C753.374,-842.096 770.766,-820.612 784.762,-803.323"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="787.753,-805.191 791.325,-795.217 782.312,-800.787 787.753,-805.191"/>
</a>
</g>
<g id="a_edge73&#45;label"><a xlink:title="blink::ModulatorImplBase::ModuleRequestsFromScriptModule &#45;&gt; blink::ScriptModule::ModuleRequestPositions (0.02s)">
<text text-anchor="middle" x="783.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N74 -->
<g id="node74" class="node"><title>N74</title>
<g id="a_node74"><a xlink:title="content::WebURLLoaderImpl::~WebURLLoaderImpl (0.10s)">
<polygon fill="#edeceb" stroke="#b2afa8" points="562,-1319.5 471,-1319.5 471,-1275.5 562,-1275.5 562,-1319.5"/>
<text text-anchor="middle" x="516.5" y="-1309.1" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="516.5" y="-1300.1" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text>
<text text-anchor="middle" x="516.5" y="-1291.1" font-family="Times,serif" font-size="8.00">~WebURLLoaderImpl</text>
<text text-anchor="middle" x="516.5" y="-1282.1" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text>
</a>
</g>
</g>
<!-- N57&#45;&gt;N74 -->
<g id="edge35" class="edge"><title>N57&#45;&gt;N74</title>
<g id="a_edge35"><a xlink:title="blink::ResourceLoader::DidFinishLoading &#45;&gt; content::WebURLLoaderImpl::~WebURLLoaderImpl (0.10s)">
<path fill="none" stroke="#b2afa8" d="M621.942,-1379.76C601.702,-1364.16 574.03,-1342.84 552.113,-1325.95"/>
<polygon fill="#b2afa8" stroke="#b2afa8" points="554.08,-1323.04 544.022,-1319.71 549.807,-1328.59 554.08,-1323.04"/>
</a>
</g>
<g id="a_edge35&#45;label"><a xlink:title="blink::ResourceLoader::DidFinishLoading &#45;&gt; content::WebURLLoaderImpl::~WebURLLoaderImpl (0.10s)">
<text text-anchor="middle" x="616.5" y="-1350.8" font-family="Times,serif" font-size="14.00"> 0.10s</text>
</a>
</g>
</g>
<!-- N58&#45;&gt;N26 -->
<g id="edge78" class="edge"><title>N58&#45;&gt;N26</title>
<g id="a_edge78"><a xlink:title="blink::ResourceResponse::CacheControlContainsNoStore &#45;&gt; WTF::AtomicString::AtomicString (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M414.284,-857.752C423.825,-844.909 436.279,-828.144 447.536,-812.99"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="450.487,-814.886 453.641,-804.772 444.868,-810.712 450.487,-814.886"/>
</a>
</g>
<g id="a_edge78&#45;label"><a xlink:title="blink::ResourceResponse::CacheControlContainsNoStore &#45;&gt; WTF::AtomicString::AtomicString (0.02s)">
<text text-anchor="middle" x="454.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N59&#45;&gt;N37 -->
<g id="edge79" class="edge"><title>N59&#45;&gt;N37</title>
<g id="a_edge79"><a xlink:title="blink::ScriptModule::ModuleRequestPositions &#45;&gt; v8::Module::GetModuleRequestLocation (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M813.899,-750.887C817.751,-735.821 823.022,-715.207 827.505,-697.677"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="830.95,-698.332 830.037,-687.776 824.168,-696.597 830.95,-698.332"/>
</a>
</g>
<g id="a_edge79&#45;label"><a xlink:title="blink::ScriptModule::ModuleRequestPositions &#45;&gt; v8::Module::GetModuleRequestLocation (0.02s)">
<text text-anchor="middle" x="842.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N60&#45;&gt;N14 -->
<g id="edge80" class="edge"><title>N60&#45;&gt;N14</title>
<g id="a_edge80"><a xlink:title="blink::ScriptModuleResolverImpl::RegisterModuleScript &#45;&gt; WTF::HashTable::insert (0.02s)">
<path fill="none" stroke="#b2b2b0" d="M873.328,-857.79C880.637,-847.652 889.745,-835.473 898.5,-825 901.34,-821.602 904.344,-818.139 907.407,-814.698"/>
<polygon fill="#b2b2b0" stroke="#b2b2b0" points="910.049,-816.995 914.168,-807.233 904.861,-812.296 910.049,-816.995"/>
</a>
</g>
<g id="a_edge80&#45;label"><a xlink:title="blink::ScriptModuleResolverImpl::RegisterModuleScript &#45;&gt; WTF::HashTable::insert (0.02s)">
<text text-anchor="middle" x="915.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.02s</text>
</a>
</g>
</g>
<!-- N61&#45;&gt;N9 -->
<g id="edge92" class="edge"><title>N61&#45;&gt;N9</title>
<g id="a_edge92"><a xlink:title="blink::TextResource::DecodedText ... &lt;unknown&gt; (0.01s)">
<path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M292.676,-750.628C301.172,-728.872 312.5,-693.965 312.5,-662.5 312.5,-662.5 312.5,-662.5 312.5,-117.5 312.5,-60.3187 497.196,-33.5279 589.818,-23.6877"/>
<polygon fill="#b2b2b1" stroke="#b2b2b1" points="590.245,-27.1623 599.832,-22.6519 589.525,-20.1995 590.245,-27.1623"/>
</a>
</g>
<g id="a_edge92&#45;label"><a xlink:title="blink::TextResource::DecodedText ... &lt;unknown&gt; (0.01s)">
<text text-anchor="middle" x="329.5" y="-397.3" font-family="Times,serif" font-size="14.00"> 0.01s</text>
</a>
</g>
</g>
<!-- N63 -->
<g id="node63" class="node"><title>N63</title>
<g id="a_node63"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (2.02s)">
<polygon fill="#edddd5" stroke="#b23f00" points="1309,-2021 1196,-2021 1196,-1968 1309,-1968 1309,-2021"/>
<text text-anchor="middle" x="1252.5" y="-2010.6" font-family="Times,serif" font-size="8.00">blink</text>
<text text-anchor="middle" x="1252.5" y="-2001.6" font-family="Times,serif" font-size="8.00">scheduler</text>
<text text-anchor="middle" x="1252.5" y="-1992.6" font-family="Times,serif" font-size="8.00">TaskQueueManager</text>
<text text-anchor="middle" x="1252.5" y="-1983.6" font-family="Times,serif" font-size="8.00">ProcessTaskFromWorkQueue</text>
<text text-anchor="middle" x="1252.5" y="-1974.6" font-family="Times,serif" font-size="8.00">0 of 2.02s (23.06%)</text>
</a>
</g>
</g>
<!-- N62&#45;&gt;N63 -->
<g id="edge4" class="edge"><title>N62&#45;&gt;N63</title>
<g id="a_edge4"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork &#45;&gt; blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (2.01s)">
<path fill="none" stroke="#b23f00" stroke-width="2" d="M1185.7,-2071.83C1190.57,-2061.15 1196.98,-2048.95 1204.5,-2039 1207.24,-2035.37 1210.32,-2031.8 1213.56,-2028.36"/>
<polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="1216.24,-2030.63 1220.82,-2021.08 1211.28,-2025.69 1216.24,-2030.63"/>
</a>
</g>
<g id="a_edge4&#45;label"><a xlink:title="blink::scheduler::TaskQueueManager::DoWork &#45;&gt; blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue (2.01s)">
<text text-anchor="middle" x="1221.5" y="-2042.8" font-family="Times,serif" font-size="14.00"> 2.01s</text>
</a>
</g>
</g>
<!-- N63&#45;&gt;N1 -->
<g id="edge3" class="edge"><title>N63&#45;&gt;N1</title>
<g id="a_edge3"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue &#45;&gt; base::debug::TaskAnnotator::RunTask (2.02s)">
<path fill="none" stroke="#b23f00" stroke-width="2" d="M1250.99,-2021.17C1248.01,-2054.74 1239.24,-2114.41 1213.5,-2158 1211.6,-2161.21 1209.46,-2164.41 1207.17,-2167.52"/>
<polygon fill="#b23f00" stroke="#b23f00" stroke-width="2" points="1204.29,-2165.52 1200.88,-2175.55 1209.8,-2169.84 1204.29,-2165.52"/>
</a>
</g>
<g id="a_edge3&#45;label"><a xlink:title="blink::scheduler::TaskQueueManager::ProcessTaskFromWorkQueue &#45;&gt; base::debug::TaskAnnotator::RunTask (2.02s)">
<text text-anchor="middle" x="1261.5" y="-2094.8" font-family="Times,serif" font-size="14.00"> 2.02s</text>
</a>
</g>
</g>
<!-- N65 -->
<g id="node65" class="node"><title>N65</title>
<g id="a_node65"><a xlink:title="content::ContentMainRunnerImpl::Run (1.86s)">
<polygon fill="#edded5" stroke="#b24200" points="1223.5,-2878 1127.5,-2878 1127.5,-2834 1223.5,-2834 1223.5,-2878"/>
<text text-anchor="middle" x="1175.5" y="-2867.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1175.5" y="-2858.6" font-family="Times,serif" font-size="8.00">ContentMainRunnerImpl</text>
<text text-anchor="middle" x="1175.5" y="-2849.6" font-family="Times,serif" font-size="8.00">Run</text>
<text text-anchor="middle" x="1175.5" y="-2840.6" font-family="Times,serif" font-size="8.00">0 of 1.86s (21.23%)</text>
</a>
</g>
</g>
<!-- N64&#45;&gt;N65 -->
<g id="edge16" class="edge"><title>N64&#45;&gt;N65</title>
<g id="a_edge16"><a xlink:title="content::ContentMain ... content::ContentMainRunnerImpl::Run (1.79s)">
<path fill="none" stroke="#b24300" stroke-width="2" stroke-dasharray="1,5" d="M1175.5,-2928.84C1175.5,-2917.44 1175.5,-2902.13 1175.5,-2888.58"/>
<polygon fill="#b24300" stroke="#b24300" stroke-width="2" points="1179,-2888.19 1175.5,-2878.19 1172,-2888.19 1179,-2888.19"/>
</a>
</g>
<g id="a_edge16&#45;label"><a xlink:title="content::ContentMain ... content::ContentMainRunnerImpl::Run (1.79s)">
<text text-anchor="middle" x="1192.5" y="-2899.8" font-family="Times,serif" font-size="14.00"> 1.79s</text>
</a>
</g>
</g>
<!-- N68 -->
<g id="node68" class="node"><title>N68</title>
<g id="a_node68"><a xlink:title="content::RunZygote (1.86s)">
<polygon fill="#edded5" stroke="#b24200" points="1215.5,-2783 1135.5,-2783 1135.5,-2747 1215.5,-2747 1215.5,-2783"/>
<text text-anchor="middle" x="1175.5" y="-2772.1" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1175.5" y="-2763.1" font-family="Times,serif" font-size="8.00">RunZygote</text>
<text text-anchor="middle" x="1175.5" y="-2754.1" font-family="Times,serif" font-size="8.00">0 of 1.86s (21.23%)</text>
</a>
</g>
</g>
<!-- N65&#45;&gt;N68 -->
<g id="edge14" class="edge"><title>N65&#45;&gt;N68</title>
<g id="a_edge14"><a xlink:title="content::ContentMainRunnerImpl::Run &#45;&gt; content::RunZygote (1.86s)">
<path fill="none" stroke="#b24200" stroke-width="2" d="M1175.5,-2833.91C1175.5,-2821.78 1175.5,-2806.41 1175.5,-2793.36"/>
<polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="1179,-2793.07 1175.5,-2783.07 1172,-2793.07 1179,-2793.07"/>
</a>
</g>
<g id="a_edge14&#45;label"><a xlink:title="content::ContentMainRunnerImpl::Run &#45;&gt; content::RunZygote (1.86s)">
<text text-anchor="middle" x="1192.5" y="-2804.8" font-family="Times,serif" font-size="14.00"> 1.86s</text>
</a>
</g>
</g>
<!-- N66 -->
<g id="node66" class="node"><title>N66</title>
<g id="a_node66"><a xlink:title="content::RendererMain (1.89s)">
<polygon fill="#edded5" stroke="#b24100" points="1215.5,-2696 1135.5,-2696 1135.5,-2660 1215.5,-2660 1215.5,-2696"/>
<text text-anchor="middle" x="1175.5" y="-2685.1" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="1175.5" y="-2676.1" font-family="Times,serif" font-size="8.00">RendererMain</text>
<text text-anchor="middle" x="1175.5" y="-2667.1" font-family="Times,serif" font-size="8.00">0 of 1.89s (21.58%)</text>
</a>
</g>
</g>
<!-- N66&#45;&gt;N51 -->
<g id="edge11" class="edge"><title>N66&#45;&gt;N51</title>
<g id="a_edge11"><a xlink:title="content::RendererMain &#45;&gt; base::RunLoop::Run (1.89s)">
<path fill="none" stroke="#b24100" stroke-width="2" d="M1175.5,-2659.84C1175.5,-2648.44 1175.5,-2633.13 1175.5,-2619.58"/>
<polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="1179,-2619.19 1175.5,-2609.19 1172,-2619.19 1179,-2619.19"/>
</a>
</g>
<g id="a_edge11&#45;label"><a xlink:title="content::RendererMain &#45;&gt; base::RunLoop::Run (1.89s)">
<text text-anchor="middle" x="1192.5" y="-2630.8" font-family="Times,serif" font-size="14.00"> 1.89s</text>
</a>
</g>
</g>
<!-- N67 -->
<g id="node67" class="node"><title>N67</title>
<g id="a_node67"><a xlink:title="content::ResourceDispatcher::Cancel (0.10s)">
<polygon fill="#edeceb" stroke="#b2afa8" points="290.5,-1101.5 208.5,-1101.5 208.5,-1057.5 290.5,-1057.5 290.5,-1101.5"/>
<text text-anchor="middle" x="249.5" y="-1091.1" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="249.5" y="-1082.1" font-family="Times,serif" font-size="8.00">ResourceDispatcher</text>
<text text-anchor="middle" x="249.5" y="-1073.1" font-family="Times,serif" font-size="8.00">Cancel</text>
<text text-anchor="middle" x="249.5" y="-1064.1" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text>
</a>
</g>
</g>
<!-- N67&#45;&gt;N18 -->
<g id="edge36" class="edge"><title>N67&#45;&gt;N18</title>
<g id="a_edge36"><a xlink:title="content::ResourceDispatcher::Cancel &#45;&gt; content::ResourceDispatcher::RemovePendingRequest (0.10s)">
<path fill="none" stroke="#b2afa8" d="M248.671,-1057.26C248.108,-1042.83 247.354,-1023.5 246.722,-1007.31"/>
<polygon fill="#b2afa8" stroke="#b2afa8" points="250.215,-1007.07 246.328,-997.211 243.22,-1007.34 250.215,-1007.07"/>
</a>
</g>
<g id="a_edge36&#45;label"><a xlink:title="content::ResourceDispatcher::Cancel &#45;&gt; content::ResourceDispatcher::RemovePendingRequest (0.10s)">
<text text-anchor="middle" x="264.5" y="-1018.8" font-family="Times,serif" font-size="14.00"> 0.10s</text>
</a>
</g>
</g>
<!-- N68&#45;&gt;N66 -->
<g id="edge15" class="edge"><title>N68&#45;&gt;N66</title>
<g id="a_edge15"><a xlink:title="content::RunZygote &#45;&gt; content::RendererMain (1.86s)">
<path fill="none" stroke="#b24200" stroke-width="2" d="M1175.5,-2746.8C1175.5,-2735.16 1175.5,-2719.55 1175.5,-2706.24"/>
<polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="1179,-2706.18 1175.5,-2696.18 1172,-2706.18 1179,-2706.18"/>
</a>
</g>
<g id="a_edge15&#45;label"><a xlink:title="content::RunZygote &#45;&gt; content::RendererMain (1.86s)">
<text text-anchor="middle" x="1192.5" y="-2717.8" font-family="Times,serif" font-size="14.00"> 1.86s</text>
</a>
</g>
</g>
<!-- N69 -->
<g id="node69" class="node"><title>N69</title>
<g id="a_node69"><a xlink:title="content::ThrottlingURLLoader::OnComplete (0.75s)">
<polygon fill="#ede8e2" stroke="#b28d66" points="1042,-1718 953,-1718 953,-1674 1042,-1674 1042,-1718"/>
<text text-anchor="middle" x="997.5" y="-1707.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="997.5" y="-1698.6" font-family="Times,serif" font-size="8.00">ThrottlingURLLoader</text>
<text text-anchor="middle" x="997.5" y="-1689.6" font-family="Times,serif" font-size="8.00">OnComplete</text>
<text text-anchor="middle" x="997.5" y="-1680.6" font-family="Times,serif" font-size="8.00">0 of 0.75s (8.56%)</text>
</a>
</g>
</g>
<!-- N69&#45;&gt;N3 -->
<g id="edge28" class="edge"><title>N69&#45;&gt;N3</title>
<g id="a_edge28"><a xlink:title="content::ThrottlingURLLoader::OnComplete &#45;&gt; content::ResourceDispatcher::OnRequestComplete (0.75s)">
<path fill="none" stroke="#b28d66" d="M1007.34,-1673.84C1012.76,-1663.36 1020.1,-1650.88 1028.5,-1641 1031.81,-1637.11 1035.54,-1633.32 1039.43,-1629.73"/>
<polygon fill="#b28d66" stroke="#b28d66" points="1041.8,-1632.31 1047.02,-1623.09 1037.19,-1627.04 1041.8,-1632.31"/>
</a>
</g>
<g id="a_edge28&#45;label"><a xlink:title="content::ThrottlingURLLoader::OnComplete &#45;&gt; content::ResourceDispatcher::OnRequestComplete (0.75s)">
<text text-anchor="middle" x="1045.5" y="-1644.8" font-family="Times,serif" font-size="14.00"> 0.75s</text>
</a>
</g>
</g>
<!-- N72 -->
<g id="node72" class="node"><title>N72</title>
<g id="a_node72"><a xlink:title="content::URLResponseBodyConsumer::~URLResponseBodyConsumer (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="154.5,-795 38.5,-795 38.5,-751 154.5,-751 154.5,-795"/>
<text text-anchor="middle" x="96.5" y="-784.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="96.5" y="-775.6" font-family="Times,serif" font-size="8.00">URLResponseBodyConsumer</text>
<text text-anchor="middle" x="96.5" y="-766.6" font-family="Times,serif" font-size="8.00">~URLResponseBodyConsumer</text>
<text text-anchor="middle" x="96.5" y="-757.6" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N70&#45;&gt;N72 -->
<g id="edge44" class="edge"><title>N70&#45;&gt;N72</title>
<g id="a_edge44"><a xlink:title="content::URLLoaderClientImpl::~URLLoaderClientImpl &#45;&gt; content::URLResponseBodyConsumer::~URLResponseBodyConsumer (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M120.429,-857.752C116.119,-842.666 110.262,-822.167 105.422,-805.225"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="108.675,-803.87 102.562,-795.217 101.944,-805.794 108.675,-803.87"/>
</a>
</g>
<g id="a_edge44&#45;label"><a xlink:title="content::URLLoaderClientImpl::~URLLoaderClientImpl &#45;&gt; content::URLResponseBodyConsumer::~URLResponseBodyConsumer (0.06s)">
<text text-anchor="middle" x="132.5" y="-828.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N71&#45;&gt;N3 -->
<g id="edge26" class="edge"><title>N71&#45;&gt;N3</title>
<g id="a_edge26"><a xlink:title="content::URLResponseBodyConsumer::OnReadable &#45;&gt; content::ResourceDispatcher::OnRequestComplete (1.36s)">
<path fill="none" stroke="#b26327" d="M1076.5,-1972.2C1076.5,-1952.45 1076.5,-1922.24 1076.5,-1896 1076.5,-1896 1076.5,-1896 1076.5,-1695 1076.5,-1674.45 1076.5,-1651.34 1076.5,-1633.3"/>
<polygon fill="#b26327" stroke="#b26327" points="1080,-1633.05 1076.5,-1623.05 1073,-1633.05 1080,-1633.05"/>
</a>
</g>
<g id="a_edge26&#45;label"><a xlink:title="content::URLResponseBodyConsumer::OnReadable &#45;&gt; content::ResourceDispatcher::OnRequestComplete (1.36s)">
<text text-anchor="middle" x="1093.5" y="-1791.8" font-family="Times,serif" font-size="14.00"> 1.36s</text>
</a>
</g>
</g>
<!-- N78 -->
<g id="node78" class="node"><title>N78</title>
<g id="a_node78"><a xlink:title="mojo::edk::Core::Close (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="128,-688 51,-688 51,-635 128,-635 128,-688"/>
<text text-anchor="middle" x="89.5" y="-677.6" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="89.5" y="-668.6" font-family="Times,serif" font-size="8.00">edk</text>
<text text-anchor="middle" x="89.5" y="-659.6" font-family="Times,serif" font-size="8.00">Core</text>
<text text-anchor="middle" x="89.5" y="-650.6" font-family="Times,serif" font-size="8.00">Close</text>
<text text-anchor="middle" x="89.5" y="-641.6" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N72&#45;&gt;N78 -->
<g id="edge45" class="edge"><title>N72&#45;&gt;N78</title>
<g id="a_edge45"><a xlink:title="content::URLResponseBodyConsumer::~URLResponseBodyConsumer &#45;&gt; mojo::edk::Core::Close (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M95.1503,-750.887C94.2028,-736.065 92.912,-715.873 91.8033,-698.53"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="95.2721,-697.929 91.1412,-688.173 88.2864,-698.376 95.2721,-697.929"/>
</a>
</g>
<g id="a_edge45&#45;label"><a xlink:title="content::URLResponseBodyConsumer::~URLResponseBodyConsumer &#45;&gt; mojo::edk::Core::Close (0.06s)">
<text text-anchor="middle" x="110.5" y="-709.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N73 -->
<g id="node73" class="node"><title>N73</title>
<g id="a_node73"><a xlink:title="content::WebURLLoaderImpl::Context::Cancel (0.10s)">
<polygon fill="#edeceb" stroke="#b2afa8" points="341.5,-1215 255.5,-1215 255.5,-1162 341.5,-1162 341.5,-1215"/>
<text text-anchor="middle" x="298.5" y="-1204.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="298.5" y="-1195.6" font-family="Times,serif" font-size="8.00">WebURLLoaderImpl</text>
<text text-anchor="middle" x="298.5" y="-1186.6" font-family="Times,serif" font-size="8.00">Context</text>
<text text-anchor="middle" x="298.5" y="-1177.6" font-family="Times,serif" font-size="8.00">Cancel</text>
<text text-anchor="middle" x="298.5" y="-1168.6" font-family="Times,serif" font-size="8.00">0 of 0.10s (1.14%)</text>
</a>
</g>
</g>
<!-- N73&#45;&gt;N67 -->
<g id="edge37" class="edge"><title>N73&#45;&gt;N67</title>
<g id="a_edge37"><a xlink:title="content::WebURLLoaderImpl::Context::Cancel &#45;&gt; content::ResourceDispatcher::Cancel (0.10s)">
<path fill="none" stroke="#b2afa8" d="M286.763,-1161.87C279.776,-1146.61 270.868,-1127.16 263.513,-1111.1"/>
<polygon fill="#b2afa8" stroke="#b2afa8" points="266.512,-1109.24 259.166,-1101.61 260.147,-1112.16 266.512,-1109.24"/>
</a>
</g>
<g id="a_edge37&#45;label"><a xlink:title="content::WebURLLoaderImpl::Context::Cancel &#45;&gt; content::ResourceDispatcher::Cancel (0.10s)">
<text text-anchor="middle" x="295.5" y="-1132.8" font-family="Times,serif" font-size="14.00"> 0.10s</text>
</a>
</g>
</g>
<!-- N74&#45;&gt;N73 -->
<g id="edge39" class="edge"><title>N74&#45;&gt;N73</title>
<g id="a_edge39"><a xlink:title="content::WebURLLoaderImpl::~WebURLLoaderImpl &#45;&gt; content::WebURLLoaderImpl::Context::Cancel (0.10s)">
<path fill="none" stroke="#b2afa8" d="M473.69,-1275.49C438.482,-1258.21 388.446,-1233.65 350.856,-1215.2"/>
<polygon fill="#b2afa8" stroke="#b2afa8" points="352.103,-1211.91 341.584,-1210.65 349.019,-1218.19 352.103,-1211.91"/>
</a>
</g>
<g id="a_edge39&#45;label"><a xlink:title="content::WebURLLoaderImpl::~WebURLLoaderImpl &#45;&gt; content::WebURLLoaderImpl::Context::Cancel (0.10s)">
<text text-anchor="middle" x="431.5" y="-1236.8" font-family="Times,serif" font-size="14.00"> 0.10s</text>
</a>
</g>
</g>
<!-- N75 -->
<g id="node75" class="node"><title>N75</title>
<g id="a_node75"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept (0.75s)">
<polygon fill="#ede8e2" stroke="#b28d66" points="1038,-1822 919,-1822 919,-1769 1038,-1769 1038,-1822"/>
<text text-anchor="middle" x="978.5" y="-1811.6" font-family="Times,serif" font-size="8.00">content</text>
<text text-anchor="middle" x="978.5" y="-1802.6" font-family="Times,serif" font-size="8.00">mojom</text>
<text text-anchor="middle" x="978.5" y="-1793.6" font-family="Times,serif" font-size="8.00">URLLoaderClientStubDispatch</text>
<text text-anchor="middle" x="978.5" y="-1784.6" font-family="Times,serif" font-size="8.00">Accept</text>
<text text-anchor="middle" x="978.5" y="-1775.6" font-family="Times,serif" font-size="8.00">0 of 0.75s (8.56%)</text>
</a>
</g>
</g>
<!-- N75&#45;&gt;N69 -->
<g id="edge29" class="edge"><title>N75&#45;&gt;N69</title>
<g id="a_edge29"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept &#45;&gt; content::ThrottlingURLLoader::OnComplete (0.75s)">
<path fill="none" stroke="#b28d66" d="M983.492,-1768.88C985.921,-1756.42 988.862,-1741.32 991.421,-1728.19"/>
<polygon fill="#b28d66" stroke="#b28d66" points="994.897,-1728.66 993.374,-1718.17 988.026,-1727.32 994.897,-1728.66"/>
</a>
</g>
<g id="a_edge29&#45;label"><a xlink:title="content::mojom::URLLoaderClientStubDispatch::Accept &#45;&gt; content::ThrottlingURLLoader::OnComplete (0.75s)">
<text text-anchor="middle" x="1007.5" y="-1739.8" font-family="Times,serif" font-size="14.00"> 0.75s</text>
</a>
</g>
</g>
<!-- N77 -->
<g id="node77" class="node"><title>N77</title>
<g id="a_node77"><a xlink:title="mojo::Connector::ReadSingleMessage (0.72s)">
<polygon fill="#ede8e3" stroke="#b28f69" points="1007,-1917 926,-1917 926,-1873 1007,-1873 1007,-1917"/>
<text text-anchor="middle" x="966.5" y="-1906.6" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="966.5" y="-1897.6" font-family="Times,serif" font-size="8.00">Connector</text>
<text text-anchor="middle" x="966.5" y="-1888.6" font-family="Times,serif" font-size="8.00">ReadSingleMessage</text>
<text text-anchor="middle" x="966.5" y="-1879.6" font-family="Times,serif" font-size="8.00">0 of 0.72s (8.22%)</text>
</a>
</g>
</g>
<!-- N76&#45;&gt;N77 -->
<g id="edge31" class="edge"><title>N76&#45;&gt;N77</title>
<g id="a_edge31"><a xlink:title="mojo::Connector::ReadAllAvailableMessages &#45;&gt; mojo::Connector::ReadSingleMessage (0.71s)">
<path fill="none" stroke="#b2906a" d="M953.189,-1972.34C955.483,-1959.18 958.475,-1942.02 961.041,-1927.31"/>
<polygon fill="#b2906a" stroke="#b2906a" points="964.549,-1927.57 962.818,-1917.11 957.653,-1926.36 964.549,-1927.57"/>
</a>
</g>
<g id="a_edge31&#45;label"><a xlink:title="mojo::Connector::ReadAllAvailableMessages &#45;&gt; mojo::Connector::ReadSingleMessage (0.71s)">
<text text-anchor="middle" x="977.5" y="-1938.8" font-family="Times,serif" font-size="14.00"> 0.71s</text>
</a>
</g>
</g>
<!-- N77&#45;&gt;N75 -->
<g id="edge30" class="edge"><title>N77&#45;&gt;N75</title>
<g id="a_edge30"><a xlink:title="mojo::Connector::ReadSingleMessage ... content::mojom::URLLoaderClientStubDispatch::Accept (0.72s)">
<path fill="none" stroke="#b28f69" stroke-dasharray="1,5" d="M969.104,-1872.84C970.565,-1860.97 972.427,-1845.85 974.107,-1832.19"/>
<polygon fill="#b28f69" stroke="#b28f69" points="977.599,-1832.47 975.347,-1822.12 970.651,-1831.62 977.599,-1832.47"/>
</a>
</g>
<g id="a_edge30&#45;label"><a xlink:title="mojo::Connector::ReadSingleMessage ... content::mojom::URLLoaderClientStubDispatch::Accept (0.72s)">
<text text-anchor="middle" x="990.5" y="-1843.8" font-family="Times,serif" font-size="14.00"> 0.72s</text>
</a>
</g>
</g>
<!-- N79 -->
<g id="node79" class="node"><title>N79</title>
<g id="a_node79"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::Close (0.06s)">
<polygon fill="#edecec" stroke="#b2b1ac" points="144.5,-579 30.5,-579 30.5,-526 144.5,-526 144.5,-579"/>
<text text-anchor="middle" x="87.5" y="-568.6" font-family="Times,serif" font-size="8.00">mojo</text>
<text text-anchor="middle" x="87.5" y="-559.6" font-family="Times,serif" font-size="8.00">edk</text>
<text text-anchor="middle" x="87.5" y="-550.6" font-family="Times,serif" font-size="8.00">DataPipeConsumerDispatcher</text>
<text text-anchor="middle" x="87.5" y="-541.6" font-family="Times,serif" font-size="8.00">Close</text>
<text text-anchor="middle" x="87.5" y="-532.6" font-family="Times,serif" font-size="8.00">0 of 0.06s (0.68%)</text>
</a>
</g>
</g>
<!-- N78&#45;&gt;N79 -->
<g id="edge46" class="edge"><title>N78&#45;&gt;N79</title>
<g id="a_edge46"><a xlink:title="mojo::edk::Core::Close &#45;&gt; mojo::edk::DataPipeConsumerDispatcher::Close (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M89.021,-634.871C88.768,-621.339 88.4534,-604.506 88.176,-589.667"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="91.6684,-589.224 87.9821,-579.291 84.6697,-589.355 91.6684,-589.224"/>
</a>
</g>
<g id="a_edge46&#45;label"><a xlink:title="mojo::edk::Core::Close &#45;&gt; mojo::edk::DataPipeConsumerDispatcher::Close (0.06s)">
<text text-anchor="middle" x="106.5" y="-605.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N79&#45;&gt;N30 -->
<g id="edge47" class="edge"><title>N79&#45;&gt;N30</title>
<g id="a_edge47"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::Close &#45;&gt; mojo::edk::DataPipeConsumerDispatcher::CloseNoLock (0.06s)">
<path fill="none" stroke="#b2b1ac" d="M87.5,-525.8C87.5,-501.626 87.5,-465.198 87.5,-438.109"/>
<polygon fill="#b2b1ac" stroke="#b2b1ac" points="91.0001,-437.865 87.5,-427.865 84.0001,-437.865 91.0001,-437.865"/>
</a>
</g>
<g id="a_edge47&#45;label"><a xlink:title="mojo::edk::DataPipeConsumerDispatcher::Close &#45;&gt; mojo::edk::DataPipeConsumerDispatcher::CloseNoLock (0.06s)">
<text text-anchor="middle" x="104.5" y="-491.8" font-family="Times,serif" font-size="14.00"> 0.06s</text>
</a>
</g>
</g>
<!-- N80&#45;&gt;N52 -->
<g id="edge60" class="edge"><title>N80&#45;&gt;N52</title>
<g id="a_edge60"><a xlink:title="mojo::edk::PlatformSharedBuffer::~PlatformSharedBuffer &#45;&gt; base::SharedMemory::Close (0.03s)">
<path fill="none" stroke="#b2b1af" d="M141.652,-214.445C141.034,-195.823 140.193,-170.492 139.535,-150.679"/>
<polygon fill="#b2b1af" stroke="#b2b1af" points="143.03,-150.48 139.2,-140.602 136.034,-150.712 143.03,-150.48"/>
</a>
</g>
<g id="a_edge60&#45;label"><a xlink:title="mojo::edk::PlatformSharedBuffer::~PlatformSharedBuffer &#45;&gt; base::SharedMemory::Close (0.03s)">
<text text-anchor="middle" x="157.5" y="-171.8" font-family="Times,serif" font-size="14.00"> 0.03s</text>
</a>
</g>
</g>
</g>
</g></svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment