Last active
January 18, 2018 05:07
-
-
Save irori/25d6cac337e0c47d749886f0c72635e9 to your computer and use it in GitHub Desktop.
pprof results of module loading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" | |
| "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <!-- Generated by graphviz version 2.38.0 (20140413.2041) | |
| --> | |
| <!-- Title: chrome Pages: 1 --> | |
| <svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <script type="text/ecmascript"><![CDATA[/** | |
| * SVGPan library 1.2.2 | |
| * ====================== | |
| * | |
| * Given an unique existing element with id "viewport" (or when missing, the | |
| * first g-element), including the the library into any SVG adds the following | |
| * capabilities: | |
| * | |
| * - Mouse panning | |
| * - Mouse zooming (using the wheel) | |
| * - Object dragging | |
| * | |
| * You can configure the behaviour of the pan/zoom/drag with the variables | |
| * listed in the CONFIGURATION section of this file. | |
| * | |
| * Known issues: | |
| * | |
| * - Zooming (while panning) on Safari has still some issues | |
| * | |
| * Releases: | |
| * | |
| * 1.2.2, Tue Aug 30 17:21:56 CEST 2011, Andrea Leofreddi | |
| * - Fixed viewBox on root tag (#7) | |
| * - Improved zoom speed (#2) | |
| * | |
| * 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi | |
| * - Fixed a regression with mouse wheel (now working on Firefox 5) | |
| * - Working with viewBox attribute (#4) | |
| * - Added "use strict;" and fixed resulting warnings (#5) | |
| * - Added configuration variables, dragging is disabled by default (#3) | |
| * | |
| * 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui | |
| * Fixed a bug with browser mouse handler interaction | |
| * | |
| * 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui | |
| * Updated the zoom code to support the mouse wheel on Safari/Chrome | |
| * | |
| * 1.0, Andrea Leofreddi | |
| * First release | |
| */ | |
| /** | |
| * @license | |
| * This code is licensed under the following BSD license: | |
| * | |
| * Copyright 2009-2010 Andrea Leofreddi <a.leofreddi@itcharm.com>. All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without modification, are | |
| * permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright notice, this list of | |
| * conditions and the following disclaimer. | |
| * | |
| * 2. Redistributions in binary form must reproduce the above copyright notice, this list | |
| * of conditions and the following disclaimer in the documentation and/or other materials | |
| * provided with the distribution. | |
| * | |
| * THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
| * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR | |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
| * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
| * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| * | |
| * The views and conclusions contained in the software and documentation are those of the | |
| * authors and should not be interpreted as representing official policies, either expressed | |
| * or implied, of Andrea Leofreddi. | |
| */ | |
| "use strict"; | |
| /// CONFIGURATION | |
| /// ====> | |
| var enablePan = 1; // 1 or 0: enable or disable panning (default enabled) | |
| var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled) | |
| var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled) | |
| var zoomScale = 0.4; // Zoom sensitivity | |
| /// <==== | |
| /// END OF CONFIGURATION | |
| var root = document.documentElement; | |
| var state = 'none', svgRoot = null, stateTarget, stateOrigin, stateTf; | |
| setupHandlers(root); | |
| /** | |
| * Register handlers | |
| */ | |
| function setupHandlers(root){ | |
| setAttributes(root, { | |
| "onmouseup" : "handleMouseUp(evt)", | |
| "onmousedown" : "handleMouseDown(evt)", | |
| "onmousemove" : "handleMouseMove(evt)", | |
| //"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element | |
| }); | |
| if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0) | |
| window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari | |
| else | |
| window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others | |
| } | |
| /** | |
| * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable. | |
| */ | |
| function getRoot(root) { | |
| if(svgRoot == null) { | |
| var r = root.getElementById("viewport") ? root.getElementById("viewport") : root.documentElement, t = r; | |
| while(t != root) { | |
| if(t.getAttribute("viewBox")) { | |
| setCTM(r, r.getCTM()); | |
| t.removeAttribute("viewBox"); | |
| } | |
| t = t.parentNode; | |
| } | |
| svgRoot = r; | |
| } | |
| return svgRoot; | |
| } | |
| /** | |
| * Instance an SVGPoint object with given event coordinates. | |
| */ | |
| function getEventPoint(evt) { | |
| var p = root.createSVGPoint(); | |
| p.x = evt.clientX; | |
| p.y = evt.clientY; | |
| return p; | |
| } | |
| /** | |
| * Sets the current transform matrix of an element. | |
| */ | |
| function setCTM(element, matrix) { | |
| var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")"; | |
| element.setAttribute("transform", s); | |
| } | |
| /** | |
| * Dumps a matrix to a string (useful for debug). | |
| */ | |
| function dumpMatrix(matrix) { | |
| var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]"; | |
| return s; | |
| } | |
| /** | |
| * Sets attributes of an element. | |
| */ | |
| function setAttributes(element, attributes){ | |
| for (var i in attributes) | |
| element.setAttributeNS(null, i, attributes[i]); | |
| } | |
| /** | |
| * Handle mouse wheel event. | |
| */ | |
| function handleMouseWheel(evt) { | |
| if(!enableZoom) | |
| return; | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var delta; | |
| if(evt.wheelDelta) | |
| delta = evt.wheelDelta / 360; // Chrome/Safari | |
| else | |
| delta = evt.detail / -9; // Mozilla | |
| var z = Math.pow(1 + zoomScale, delta); | |
| var g = getRoot(svgDoc); | |
| var p = getEventPoint(evt); | |
| p = p.matrixTransform(g.getCTM().inverse()); | |
| // Compute new scale matrix in current mouse position | |
| var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y); | |
| setCTM(g, g.getCTM().multiply(k)); | |
| if(typeof(stateTf) == "undefined") | |
| stateTf = g.getCTM().inverse(); | |
| stateTf = stateTf.multiply(k.inverse()); | |
| } | |
| /** | |
| * Handle mouse move event. | |
| */ | |
| function handleMouseMove(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if(state == 'pan' && enablePan) { | |
| // Pan mode | |
| var p = getEventPoint(evt).matrixTransform(stateTf); | |
| setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y)); | |
| } else if(state == 'drag' && enableDrag) { | |
| // Drag mode | |
| var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse()); | |
| setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM())); | |
| stateOrigin = p; | |
| } | |
| } | |
| /** | |
| * Handle click event. | |
| */ | |
| function handleMouseDown(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| var g = getRoot(svgDoc); | |
| if( | |
| evt.target.tagName == "svg" | |
| || !enableDrag // Pan anyway when drag is disabled and the user clicked on an element | |
| ) { | |
| // Pan mode | |
| state = 'pan'; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } else { | |
| // Drag mode | |
| state = 'drag'; | |
| stateTarget = evt.target; | |
| stateTf = g.getCTM().inverse(); | |
| stateOrigin = getEventPoint(evt).matrixTransform(stateTf); | |
| } | |
| } | |
| /** | |
| * Handle mouse button release event. | |
| */ | |
| function handleMouseUp(evt) { | |
| if(evt.preventDefault) | |
| evt.preventDefault(); | |
| evt.returnValue = false; | |
| var svgDoc = evt.target.ownerDocument; | |
| if(state == 'pan' || state == 'drag') { | |
| // Quit pan mode | |
| state = ''; | |
| } | |
| } | |
| ]]></script><g id="viewport" transform="scale(0.5,0.5) translate(0,0)"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 3706)"> | |
| <title>chrome</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-3706 1750.03,-3706 1750.03,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="8,-3562 8,-3694 428,-3694 428,-3562 8,-3562"/> | |
| </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="420,-3686 16,-3686 16,-3570 420,-3570 420,-3686"/> | |
| <text text-anchor="start" x="24" y="-3669.2" font-family="Times,serif" font-size="16.00">File: chrome</text> | |
| <text text-anchor="start" x="24" y="-3651.2" font-family="Times,serif" font-size="16.00">Type: cpu</text> | |
| <text text-anchor="start" x="24" y="-3633.2" font-family="Times,serif" font-size="16.00">Showing nodes accounting for 6.90s, 51.84% of 13.31s total</text> | |
| <text text-anchor="start" x="24" y="-3615.2" font-family="Times,serif" font-size="16.00">Dropped 931 nodes (cum <= 0.07s)</text> | |
| <text text-anchor="start" x="24" y="-3597.2" font-family="Times,serif" font-size="16.00">Dropped 113 edges (freq <= 0.01s)</text> | |
| <text text-anchor="start" x="24" y="-3579.2" font-family="Times,serif" font-size="16.00">Showing top 100 nodes out of 392</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node1" class="node"><title>N1</title> | |
| <g id="a_node1"><a xlink:title="base::debug::TaskAnnotator::RunTask (6.29s)"> | |
| <polygon fill="#eddad5" stroke="#b22300" points="850.5,-2969 761.5,-2969 761.5,-2895 850.5,-2895 850.5,-2969"/> | |
| <text text-anchor="middle" x="806" y="-2957" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="806" y="-2946" font-family="Times,serif" font-size="10.00">debug</text> | |
| <text text-anchor="middle" x="806" y="-2935" font-family="Times,serif" font-size="10.00">TaskAnnotator</text> | |
| <text text-anchor="middle" x="806" y="-2924" font-family="Times,serif" font-size="10.00">RunTask</text> | |
| <text text-anchor="middle" x="806" y="-2913" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="806" y="-2902" font-family="Times,serif" font-size="10.00">of 6.29s (47.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2 --> | |
| <g id="node2" class="node"><title>N2</title> | |
| <g id="a_node2"><a xlink:title="net::HttpCache::Transaction::DoLoop (3.06s)"> | |
| <polygon fill="#edddd5" stroke="#b23f00" points="758.5,-1721 669.5,-1721 669.5,-1647 758.5,-1647 758.5,-1721"/> | |
| <text text-anchor="middle" x="714" y="-1709" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="714" y="-1698" font-family="Times,serif" font-size="10.00">HttpCache</text> | |
| <text text-anchor="middle" x="714" y="-1687" font-family="Times,serif" font-size="10.00">Transaction</text> | |
| <text text-anchor="middle" x="714" y="-1676" font-family="Times,serif" font-size="10.00">DoLoop</text> | |
| <text text-anchor="middle" x="714" y="-1665" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="714" y="-1654" font-family="Times,serif" font-size="10.00">of 3.06s (22.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N2 --> | |
| <g id="edge54" class="edge"><title>N1->N2</title> | |
| <g id="a_edge54"><a xlink:title="base::debug::TaskAnnotator::RunTask -> net::HttpCache::Transaction::DoLoop (0.40s)"> | |
| <path fill="none" stroke="#b2a997" d="M809.517,-2894.91C818.576,-2798.72 842,-2528.19 842,-2302.5 842,-2302.5 842,-2302.5 842,-1802.5 842,-1759.86 802.967,-1728.48 768.011,-1708.93"/> | |
| <polygon fill="#b2a997" stroke="#b2a997" points="769.235,-1705.61 758.768,-1703.97 765.926,-1711.78 769.235,-1705.61"/> | |
| </a> | |
| </g> | |
| <g id="a_edge54-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> net::HttpCache::Transaction::DoLoop (0.40s)"> | |
| <text text-anchor="middle" x="859" y="-2297.8" font-family="Times,serif" font-size="14.00"> 0.40s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node10" class="node"><title>N10</title> | |
| <g id="a_node10"><a xlink:title="operator new (0.69s)"> | |
| <polygon fill="#edeae7" stroke="#b29f84" points="403,-703.5 313,-703.5 313,-659.5 403,-659.5 403,-703.5"/> | |
| <text text-anchor="middle" x="358" y="-690.7" font-family="Times,serif" font-size="11.00">operator new</text> | |
| <text text-anchor="middle" x="358" y="-678.7" font-family="Times,serif" font-size="11.00">0.05s (0.38%)</text> | |
| <text text-anchor="middle" x="358" y="-666.7" font-family="Times,serif" font-size="11.00">of 0.69s (5.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N10 --> | |
| <g id="edge108" class="edge"><title>N1->N10</title> | |
| <g id="a_edge108"><a xlink:title="base::debug::TaskAnnotator::RunTask ... operator new (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M761.229,-2919.96C726.259,-2911.77 676.323,-2901.02 632,-2895 569.662,-2886.54 71,-2881.41 71,-2818.5 71,-2818.5 71,-2818.5 71,-799.5 71,-764.91 87.1793,-755.128 116,-736 172.298,-698.637 250.585,-686.981 302.702,-683.553"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="302.98,-687.043 312.762,-682.972 302.577,-680.054 302.98,-687.043"/> | |
| </a> | |
| </g> | |
| <g id="a_edge108-label"><a xlink:title="base::debug::TaskAnnotator::RunTask ... operator new (0.05s)"> | |
| <text text-anchor="middle" x="88" y="-1799.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node14" class="node"><title>N14</title> | |
| <g id="a_node14"><a xlink:title="net::SpdySession::PumpReadLoop (2.90s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="733,-2839.5 653,-2839.5 653,-2795.5 733,-2795.5 733,-2839.5"/> | |
| <text text-anchor="middle" x="693" y="-2829.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="693" y="-2820.1" font-family="Times,serif" font-size="8.00">SpdySession</text> | |
| <text text-anchor="middle" x="693" y="-2811.1" font-family="Times,serif" font-size="8.00">PumpReadLoop</text> | |
| <text text-anchor="middle" x="693" y="-2802.1" font-family="Times,serif" font-size="8.00">0 of 2.90s (21.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N14 --> | |
| <g id="edge12" class="edge"><title>N1->N14</title> | |
| <g id="a_edge12"><a xlink:title="base::debug::TaskAnnotator::RunTask -> net::SpdySession::PumpReadLoop (1.83s)"> | |
| <path fill="none" stroke="#b26e37" d="M769.624,-2894.79C754.021,-2879.25 736.062,-2861.37 721.454,-2846.83"/> | |
| <polygon fill="#b26e37" stroke="#b26e37" points="723.707,-2844.13 714.151,-2839.56 718.768,-2849.09 723.707,-2844.13"/> | |
| </a> | |
| </g> | |
| <g id="a_edge12-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> net::SpdySession::PumpReadLoop (1.83s)"> | |
| <text text-anchor="middle" x="767" y="-2865.8" font-family="Times,serif" font-size="14.00"> 1.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node15" class="node"><title>N15</title> | |
| <g id="a_node15"><a xlink:title="net::HttpNetworkTransaction::DoLoop (0.74s)"> | |
| <polygon fill="#edeae6" stroke="#b29d80" points="561,-1590 433,-1590 433,-1522 561,-1522 561,-1590"/> | |
| <text text-anchor="middle" x="497" y="-1577.2" font-family="Times,serif" font-size="11.00">net</text> | |
| <text text-anchor="middle" x="497" y="-1565.2" font-family="Times,serif" font-size="11.00">HttpNetworkTransaction</text> | |
| <text text-anchor="middle" x="497" y="-1553.2" font-family="Times,serif" font-size="11.00">DoLoop</text> | |
| <text text-anchor="middle" x="497" y="-1541.2" font-family="Times,serif" font-size="11.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="497" y="-1529.2" font-family="Times,serif" font-size="11.00">of 0.74s (5.56%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N15 --> | |
| <g id="edge65" class="edge"><title>N1->N15</title> | |
| <g id="a_edge65"><a xlink:title="base::debug::TaskAnnotator::RunTask ... net::HttpNetworkTransaction::DoLoop (0.25s)"> | |
| <path fill="none" stroke="#b2ada1" stroke-dasharray="1,5" d="M761.471,-2923.12C680.858,-2907.57 519,-2869.94 519,-2818.5 519,-2818.5 519,-2818.5 519,-2300.5 519,-2242.69 514.006,-2217.5 470,-2180 442.919,-2156.93 414.149,-2189.84 392,-2162 356.784,-2117.73 452.143,-1730.98 485.764,-1600.09"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="489.25,-1600.59 488.355,-1590.03 482.471,-1598.84 489.25,-1600.59"/> | |
| </a> | |
| </g> | |
| <g id="a_edge65-label"><a xlink:title="base::debug::TaskAnnotator::RunTask ... net::HttpNetworkTransaction::DoLoop (0.25s)"> | |
| <text text-anchor="middle" x="536" y="-2240.8" font-family="Times,serif" font-size="14.00"> 0.25s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node23" class="node"><title>N23</title> | |
| <g id="a_node23"><a xlink:title="base::internal::Invoker::RunOnce (0.45s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="1199,-2740 1109,-2740 1109,-2660 1199,-2660 1199,-2740"/> | |
| <text text-anchor="middle" x="1154" y="-2727.2" font-family="Times,serif" font-size="11.00">base</text> | |
| <text text-anchor="middle" x="1154" y="-2715.2" font-family="Times,serif" font-size="11.00">internal</text> | |
| <text text-anchor="middle" x="1154" y="-2703.2" font-family="Times,serif" font-size="11.00">Invoker</text> | |
| <text text-anchor="middle" x="1154" y="-2691.2" font-family="Times,serif" font-size="11.00">RunOnce</text> | |
| <text text-anchor="middle" x="1154" y="-2679.2" font-family="Times,serif" font-size="11.00">0.03s (0.23%)</text> | |
| <text text-anchor="middle" x="1154" y="-2667.2" font-family="Times,serif" font-size="11.00">of 0.45s (3.38%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N23 --> | |
| <g id="edge61" class="edge"><title>N1->N23</title> | |
| <g id="a_edge61"><a xlink:title="base::debug::TaskAnnotator::RunTask ... base::internal::Invoker::RunOnce (0.28s)"> | |
| <path fill="none" stroke="#b2ac9f" stroke-dasharray="1,5" d="M850.5,-2900.7C853.374,-2898.77 856.226,-2896.85 859,-2895 943.032,-2838.83 1041.2,-2774.54 1100.43,-2735.88"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="1102.42,-2738.77 1108.88,-2730.37 1098.59,-2732.9 1102.42,-2738.77"/> | |
| </a> | |
| </g> | |
| <g id="a_edge61-label"><a xlink:title="base::debug::TaskAnnotator::RunTask ... base::internal::Invoker::RunOnce (0.28s)"> | |
| <text text-anchor="middle" x="1032" y="-2813.8" font-family="Times,serif" font-size="14.00"> 0.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node32" class="node"><title>N32</title> | |
| <g id="a_node32"><a xlink:title="mojo::SimpleWatcher::OnHandleReady (1.99s)"> | |
| <polygon fill="#ede3db" stroke="#b2672d" points="462,-2839.5 382,-2839.5 382,-2795.5 462,-2795.5 462,-2839.5"/> | |
| <text text-anchor="middle" x="422" y="-2829.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="422" y="-2820.1" font-family="Times,serif" font-size="8.00">SimpleWatcher</text> | |
| <text text-anchor="middle" x="422" y="-2811.1" font-family="Times,serif" font-size="8.00">OnHandleReady</text> | |
| <text text-anchor="middle" x="422" y="-2802.1" font-family="Times,serif" font-size="8.00">0 of 1.99s (14.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N32 --> | |
| <g id="edge15" class="edge"><title>N1->N32</title> | |
| <g id="a_edge15"><a xlink:title="base::debug::TaskAnnotator::RunTask -> mojo::SimpleWatcher::OnHandleReady (1.72s)"> | |
| <path fill="none" stroke="#b2743f" d="M761.325,-2927.67C681.895,-2921.13 519.852,-2904.76 471,-2877 458.821,-2870.08 448.343,-2858.9 440.239,-2848.15"/> | |
| <polygon fill="#b2743f" stroke="#b2743f" points="442.9,-2845.85 434.262,-2839.72 437.189,-2849.9 442.9,-2845.85"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> mojo::SimpleWatcher::OnHandleReady (1.72s)"> | |
| <text text-anchor="middle" x="488" y="-2865.8" font-family="Times,serif" font-size="14.00"> 1.72s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41 --> | |
| <g id="node41" class="node"><title>N41</title> | |
| <g id="a_node41"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply (1.02s)"> | |
| <polygon fill="#ede8e4" stroke="#b2926e" points="1268.5,-2844 1171.5,-2844 1171.5,-2791 1268.5,-2791 1268.5,-2844"/> | |
| <text text-anchor="middle" x="1220" y="-2833.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1220" y="-2824.6" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1220" y="-2815.6" font-family="Times,serif" font-size="8.00">PostTaskAndReplyRelay</text> | |
| <text text-anchor="middle" x="1220" y="-2806.6" font-family="Times,serif" font-size="8.00">RunTaskAndPostReply</text> | |
| <text text-anchor="middle" x="1220" y="-2797.6" font-family="Times,serif" font-size="8.00">0 of 1.02s (7.66%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N41 --> | |
| <g id="edge30" class="edge"><title>N1->N41</title> | |
| <g id="a_edge30"><a xlink:title="base::debug::TaskAnnotator::RunTask -> base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply (1.02s)"> | |
| <path fill="none" stroke="#b2926e" d="M850.663,-2898.8C853.422,-2897.4 856.212,-2896.12 859,-2895 904.174,-2876.91 919.269,-2886.48 967,-2877 996.081,-2871.23 1003.04,-2868.34 1032,-2862 1070.57,-2853.56 1080.52,-2852.83 1119,-2844 1132.76,-2840.84 1147.52,-2837.24 1161.39,-2833.76"/> | |
| <polygon fill="#b2926e" stroke="#b2926e" points="1162.46,-2837.09 1171.3,-2831.25 1160.75,-2830.31 1162.46,-2837.09"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="base::debug::TaskAnnotator::RunTask -> base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply (1.02s)"> | |
| <text text-anchor="middle" x="1049" y="-2865.8" font-family="Times,serif" font-size="14.00"> 1.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N10 --> | |
| <g id="edge114" class="edge"><title>N2->N10</title> | |
| <g id="a_edge114"><a xlink:title="net::HttpCache::Transaction::DoLoop ... operator new (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M681.602,-1646.63C669.357,-1631.66 655.982,-1613.7 646,-1596 619.603,-1549.2 626.657,-1531.25 603,-1483 581.222,-1438.58 573.019,-1428.77 545,-1388 509.1,-1335.76 487.247,-1331.23 458,-1275 430.173,-1221.5 377,-1076.3 377,-1016 377,-1016 377,-1016 377,-799.5 377,-770.233 371.136,-737.375 365.924,-713.948"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="369.262,-712.849 363.598,-703.895 362.442,-714.427 369.262,-712.849"/> | |
| </a> | |
| </g> | |
| <g id="a_edge114-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... operator new (0.05s)"> | |
| <text text-anchor="middle" x="444" y="-1192.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N15 --> | |
| <g id="edge51" class="edge"><title>N2->N15</title> | |
| <g id="a_edge51"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpNetworkTransaction::DoLoop (0.43s)"> | |
| <path fill="none" stroke="#b2a895" stroke-dasharray="1,5" d="M669.301,-1657.05C638.664,-1639.26 597.5,-1615.36 563.091,-1595.38"/> | |
| <polygon fill="#b2a895" stroke="#b2a895" points="564.446,-1592.11 554.04,-1590.12 560.931,-1598.17 564.446,-1592.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge51-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpNetworkTransaction::DoLoop (0.43s)"> | |
| <text text-anchor="middle" x="636" y="-1617.8" font-family="Times,serif" font-size="14.00"> 0.43s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51 --> | |
| <g id="node51" class="node"><title>N51</title> | |
| <g id="a_node51"><a xlink:title="base::Histogram::AddCount (0.16s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="745,-1590 655,-1590 655,-1522 745,-1522 745,-1590"/> | |
| <text text-anchor="middle" x="700" y="-1577.2" font-family="Times,serif" font-size="11.00">base</text> | |
| <text text-anchor="middle" x="700" y="-1565.2" font-family="Times,serif" font-size="11.00">Histogram</text> | |
| <text text-anchor="middle" x="700" y="-1553.2" font-family="Times,serif" font-size="11.00">AddCount</text> | |
| <text text-anchor="middle" x="700" y="-1541.2" font-family="Times,serif" font-size="11.00">0.05s (0.38%)</text> | |
| <text text-anchor="middle" x="700" y="-1529.2" font-family="Times,serif" font-size="11.00">of 0.16s (1.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N51 --> | |
| <g id="edge127" class="edge"><title>N2->N51</title> | |
| <g id="a_edge127"><a xlink:title="net::HttpCache::Transaction::DoLoop ... base::Histogram::AddCount (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M709.988,-1646.89C708.373,-1632.36 706.497,-1615.47 704.81,-1600.29"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="708.26,-1599.65 703.677,-1590.09 701.303,-1600.42 708.26,-1599.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge127-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... base::Histogram::AddCount (0.03s)"> | |
| <text text-anchor="middle" x="725" y="-1617.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53 --> | |
| <g id="node53" class="node"><title>N53</title> | |
| <g id="a_node53"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted (1.49s)"> | |
| <polygon fill="#ede6df" stroke="#b27e4e" points="1010.5,-1578 927.5,-1578 927.5,-1534 1010.5,-1534 1010.5,-1578"/> | |
| <text text-anchor="middle" x="969" y="-1567.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="969" y="-1558.6" font-family="Times,serif" font-size="8.00">URLRequestHttpJob</text> | |
| <text text-anchor="middle" x="969" y="-1549.6" font-family="Times,serif" font-size="8.00">OnStartCompleted</text> | |
| <text text-anchor="middle" x="969" y="-1540.6" font-family="Times,serif" font-size="8.00">0 of 1.49s (11.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N53 --> | |
| <g id="edge22" class="edge"><title>N2->N53</title> | |
| <g id="a_edge22"><a xlink:title="net::HttpCache::Transaction::DoLoop -> net::URLRequestHttpJob::OnStartCompleted (1.49s)"> | |
| <path fill="none" stroke="#b27e4e" d="M758.501,-1667.69C800.885,-1652.28 865.782,-1626.45 918,-1596 923.952,-1592.53 930.002,-1588.46 935.758,-1584.29"/> | |
| <polygon fill="#b27e4e" stroke="#b27e4e" points="938.036,-1586.95 943.932,-1578.15 933.833,-1581.35 938.036,-1586.95"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-label"><a xlink:title="net::HttpCache::Transaction::DoLoop -> net::URLRequestHttpJob::OnStartCompleted (1.49s)"> | |
| <text text-anchor="middle" x="898" y="-1617.8" font-family="Times,serif" font-size="14.00"> 1.49s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67 --> | |
| <g id="node67" class="node"><title>N67</title> | |
| <g id="a_node67"><a xlink:title="disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="909,-1578 801,-1578 801,-1534 909,-1534 909,-1578"/> | |
| <text text-anchor="middle" x="855" y="-1567.6" font-family="Times,serif" font-size="8.00">disk_cache</text> | |
| <text text-anchor="middle" x="855" y="-1558.6" font-family="Times,serif" font-size="8.00">SimpleEntryImpl</text> | |
| <text text-anchor="middle" x="855" y="-1549.6" font-family="Times,serif" font-size="8.00">RunNextOperationIfNeeded</text> | |
| <text text-anchor="middle" x="855" y="-1540.6" font-family="Times,serif" font-size="8.00">0 of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N67 --> | |
| <g id="edge80" class="edge"><title>N2->N67</title> | |
| <g id="a_edge80"><a xlink:title="net::HttpCache::Transaction::DoLoop ... disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded (0.15s)"> | |
| <path fill="none" stroke="#b2afa8" stroke-dasharray="1,5" d="M754.405,-1646.89C776.486,-1627.16 803.415,-1603.1 823.852,-1584.83"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="826.219,-1587.41 831.344,-1578.14 821.555,-1582.19 826.219,-1587.41"/> | |
| </a> | |
| </g> | |
| <g id="a_edge80-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded (0.15s)"> | |
| <text text-anchor="middle" x="806" y="-1617.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78 --> | |
| <g id="node78" class="node"><title>N78</title> | |
| <g id="a_node78"><a xlink:title="std::__1::basic_string::basic_string (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ad" points="414.5,-1596 329.5,-1596 329.5,-1516 414.5,-1516 414.5,-1596"/> | |
| <text text-anchor="middle" x="372" y="-1583.2" font-family="Times,serif" font-size="11.00">std</text> | |
| <text text-anchor="middle" x="372" y="-1571.2" font-family="Times,serif" font-size="11.00">__1</text> | |
| <text text-anchor="middle" x="372" y="-1559.2" font-family="Times,serif" font-size="11.00">basic_string</text> | |
| <text text-anchor="middle" x="372" y="-1547.2" font-family="Times,serif" font-size="11.00">basic_string</text> | |
| <text text-anchor="middle" x="372" y="-1535.2" font-family="Times,serif" font-size="11.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="372" y="-1523.2" font-family="Times,serif" font-size="11.00">of 0.08s (0.6%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N78 --> | |
| <g id="edge151" class="edge"><title>N2->N78</title> | |
| <g id="a_edge151"><a xlink:title="net::HttpCache::Transaction::DoLoop ... std::__1::basic_string::basic_string (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M669.469,-1671.69C599.523,-1653.59 467.405,-1617.91 424,-1596 423.805,-1595.9 423.61,-1595.8 423.414,-1595.7"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="425.09,-1592.63 414.66,-1590.77 421.654,-1598.73 425.09,-1592.63"/> | |
| </a> | |
| </g> | |
| <g id="a_edge151-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... std::__1::basic_string::basic_string (0.02s)"> | |
| <text text-anchor="middle" x="531" y="-1617.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node3" class="node"><title>N3</title> | |
| <g id="a_node3"><a xlink:title="<unknown> (1.92s)"> | |
| <polygon fill="#ede3dc" stroke="#b26a31" points="1627.5,-330 1436.5,-330 1436.5,-244 1627.5,-244 1627.5,-330"/> | |
| <text text-anchor="middle" x="1532" y="-306.8" font-family="Times,serif" font-size="24.00"><unknown></text> | |
| <text text-anchor="middle" x="1532" y="-280.8" font-family="Times,serif" font-size="24.00">1.69s (12.70%)</text> | |
| <text text-anchor="middle" x="1532" y="-254.8" font-family="Times,serif" font-size="24.00">of 1.92s (14.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node17" class="node"><title>N17</title> | |
| <g id="a_node17"><a xlink:title="(anonymous namespace)::do_free_with_callback (0.34s)"> | |
| <polygon fill="#edecea" stroke="#b2aa9b" points="1054,-68 902,-68 902,-0 1054,-0 1054,-68"/> | |
| <text text-anchor="middle" x="978" y="-52.8" font-family="Times,serif" font-size="14.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="978" y="-37.8" font-family="Times,serif" font-size="14.00">do_free_with_callback</text> | |
| <text text-anchor="middle" x="978" y="-22.8" font-family="Times,serif" font-size="14.00">0.21s (1.58%)</text> | |
| <text text-anchor="middle" x="978" y="-7.8" font-family="Times,serif" font-size="14.00">of 0.34s (2.55%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N17 --> | |
| <g id="edge130" class="edge"><title>N3->N17</title> | |
| <g id="a_edge130"><a xlink:title="<unknown> ... (anonymous namespace)::do_free_with_callback (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1439.27,-243.988C1333.38,-196.013 1161.74,-118.247 1060.38,-72.323"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1061.65,-69.0558 1051.09,-68.1169 1058.76,-75.4319 1061.65,-69.0558"/> | |
| </a> | |
| </g> | |
| <g id="a_edge130-label"><a xlink:title="<unknown> ... (anonymous namespace)::do_free_with_callback (0.02s)"> | |
| <text text-anchor="middle" x="1337" y="-152.3" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N85 --> | |
| <g id="node85" class="node"><title>N85</title> | |
| <g id="a_node85"><a xlink:title="__lxstat (0.10s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="1635.5,-174 1552.5,-174 1552.5,-138 1635.5,-138 1635.5,-174"/> | |
| <text text-anchor="middle" x="1594" y="-159.4" font-family="Times,serif" font-size="12.00">__lxstat</text> | |
| <text text-anchor="middle" x="1594" y="-146.4" font-family="Times,serif" font-size="12.00">0.10s (0.75%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N85 --> | |
| <g id="edge131" class="edge"><title>N3->N85</title> | |
| <g id="a_edge131"><a xlink:title="<unknown> -> __lxstat (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1552.3,-243.761C1561.81,-223.982 1572.84,-201.02 1581.17,-183.688"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1584.56,-184.73 1585.73,-174.201 1578.25,-181.698 1584.56,-184.73"/> | |
| </a> | |
| </g> | |
| <g id="a_edge131-label"><a xlink:title="<unknown> -> __lxstat (0.02s)"> | |
| <text text-anchor="middle" x="1583" y="-214.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node4" class="node"><title>N4</title> | |
| <g id="a_node4"><a xlink:title="start_thread (7.78s)"> | |
| <polygon fill="#edd8d5" stroke="#b21a00" points="518,-3646 438,-3646 438,-3610 518,-3610 518,-3646"/> | |
| <text text-anchor="middle" x="478" y="-3630.6" font-family="Times,serif" font-size="8.00">start_thread</text> | |
| <text text-anchor="middle" x="478" y="-3621.6" font-family="Times,serif" font-size="8.00">0 of 7.78s (58.45%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6 --> | |
| <g id="node6" class="node"><title>N6</title> | |
| <g id="a_node6"><a xlink:title="base::(anonymous namespace)::ThreadFunc (7.79s)"> | |
| <polygon fill="#edd8d5" stroke="#b21a00" points="525.5,-3519 430.5,-3519 430.5,-3475 525.5,-3475 525.5,-3519"/> | |
| <text text-anchor="middle" x="478" y="-3508.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="478" y="-3499.6" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="478" y="-3490.6" font-family="Times,serif" font-size="8.00">ThreadFunc</text> | |
| <text text-anchor="middle" x="478" y="-3481.6" font-family="Times,serif" font-size="8.00">0 of 7.79s (58.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N6 --> | |
| <g id="edge1" class="edge"><title>N4->N6</title> | |
| <g id="a_edge1"><a xlink:title="start_thread -> base::(anonymous namespace)::ThreadFunc (7.78s)"> | |
| <path fill="none" stroke="#b21a00" stroke-width="3" d="M478,-3609.87C478,-3589.36 478,-3554.61 478,-3529.27"/> | |
| <polygon fill="#b21a00" stroke="#b21a00" stroke-width="3" points="481.5,-3529.06 478,-3519.06 474.5,-3529.06 481.5,-3529.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="start_thread -> base::(anonymous namespace)::ThreadFunc (7.78s)"> | |
| <text text-anchor="middle" x="495" y="-3540.8" font-family="Times,serif" font-size="14.00"> 7.78s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node5" class="node"><title>N5</title> | |
| <g id="a_node5"><a xlink:title="base::MessagePumpLibevent::Run (6.42s)"> | |
| <polygon fill="#eddad5" stroke="#b22300" points="523.5,-3301.5 432.5,-3301.5 432.5,-3257.5 523.5,-3257.5 523.5,-3301.5"/> | |
| <text text-anchor="middle" x="478" y="-3291.1" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="478" y="-3282.1" font-family="Times,serif" font-size="8.00">MessagePumpLibevent</text> | |
| <text text-anchor="middle" x="478" y="-3273.1" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="478" y="-3264.1" font-family="Times,serif" font-size="8.00">0 of 6.42s (48.23%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node7" class="node"><title>N7</title> | |
| <g id="a_node7"><a xlink:title="base::MessageLoop::DoWork (5.40s)"> | |
| <polygon fill="#eddbd5" stroke="#b22a00" points="850.5,-3197 761.5,-3197 761.5,-3134 850.5,-3134 850.5,-3197"/> | |
| <text text-anchor="middle" x="806" y="-3185" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="806" y="-3174" font-family="Times,serif" font-size="10.00">MessageLoop</text> | |
| <text text-anchor="middle" x="806" y="-3163" font-family="Times,serif" font-size="10.00">DoWork</text> | |
| <text text-anchor="middle" x="806" y="-3152" font-family="Times,serif" font-size="10.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="806" y="-3141" font-family="Times,serif" font-size="10.00">of 5.40s (40.57%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N7 --> | |
| <g id="edge6" class="edge"><title>N5->N7</title> | |
| <g id="a_edge6"><a xlink:title="base::MessagePumpLibevent::Run -> base::MessageLoop::DoWork (4.62s)"> | |
| <path fill="none" stroke="#b23000" stroke-width="2" d="M518.047,-3257.37C524.654,-3254.11 531.476,-3250.87 538,-3248 576.233,-3231.18 585.531,-3225.35 626,-3215 677.915,-3201.73 696.484,-3213.8 751.637,-3196.57"/> | |
| <polygon fill="#b23000" stroke="#b23000" stroke-width="2" points="752.804,-3199.87 761.2,-3193.41 750.607,-3193.22 752.804,-3199.87"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="base::MessagePumpLibevent::Run -> base::MessageLoop::DoWork (4.62s)"> | |
| <text text-anchor="middle" x="643" y="-3218.8" font-family="Times,serif" font-size="14.00"> 4.62s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N98 --> | |
| <g id="node98" class="node"><title>N98</title> | |
| <g id="a_node98"><a xlink:title="event_base_loop (1.77s)"> | |
| <polygon fill="#ede4dd" stroke="#b2713b" points="461,-3183.5 381,-3183.5 381,-3147.5 461,-3147.5 461,-3183.5"/> | |
| <text text-anchor="middle" x="421" y="-3168.1" font-family="Times,serif" font-size="8.00">event_base_loop</text> | |
| <text text-anchor="middle" x="421" y="-3159.1" font-family="Times,serif" font-size="8.00">0 of 1.77s (13.30%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N98 --> | |
| <g id="edge13" class="edge"><title>N5->N98</title> | |
| <g id="a_edge13"><a xlink:title="base::MessagePumpLibevent::Run -> event_base_loop (1.77s)"> | |
| <path fill="none" stroke="#b2713b" d="M444.657,-3257.49C435.64,-3250 427.001,-3240.72 422,-3230 416.791,-3218.83 415.94,-3205.31 416.635,-3193.62"/> | |
| <polygon fill="#b2713b" stroke="#b2713b" points="420.133,-3193.81 417.627,-3183.52 413.166,-3193.13 420.133,-3193.81"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="base::MessagePumpLibevent::Run -> event_base_loop (1.77s)"> | |
| <text text-anchor="middle" x="439" y="-3218.8" font-family="Times,serif" font-size="14.00"> 1.77s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node27" class="node"><title>N27</title> | |
| <g id="a_node27"><a xlink:title="base::RunLoop::Run (6.66s)"> | |
| <polygon fill="#edd9d5" stroke="#b22100" points="518,-3415 438,-3415 438,-3371 518,-3371 518,-3415"/> | |
| <text text-anchor="middle" x="478" y="-3404.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="478" y="-3395.6" font-family="Times,serif" font-size="8.00">RunLoop</text> | |
| <text text-anchor="middle" x="478" y="-3386.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="478" y="-3377.6" font-family="Times,serif" font-size="8.00">0 of 6.66s (50.04%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N27 --> | |
| <g id="edge2" class="edge"><title>N6->N27</title> | |
| <g id="a_edge2"><a xlink:title="base::(anonymous namespace)::ThreadFunc ... base::RunLoop::Run (6.42s)"> | |
| <path fill="none" stroke="#b22300" stroke-width="3" stroke-dasharray="1,5" d="M478,-3474.87C478,-3460.51 478,-3441.27 478,-3425.16"/> | |
| <polygon fill="#b22300" stroke="#b22300" stroke-width="3" points="481.5,-3425.11 478,-3415.11 474.5,-3425.11 481.5,-3425.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="base::(anonymous namespace)::ThreadFunc ... base::RunLoop::Run (6.42s)"> | |
| <text text-anchor="middle" x="495" y="-3445.8" font-family="Times,serif" font-size="14.00"> 6.42s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42 --> | |
| <g id="node42" class="node"><title>N42</title> | |
| <g id="a_node42"><a xlink:title="base::internal::SchedulerWorker::Thread::ThreadMain (1.35s)"> | |
| <polygon fill="#ede7e1" stroke="#b28457" points="616,-3424 536,-3424 536,-3362 616,-3362 616,-3424"/> | |
| <text text-anchor="middle" x="576" y="-3413.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="576" y="-3404.6" font-family="Times,serif" font-size="8.00">internal</text> | |
| <text text-anchor="middle" x="576" y="-3395.6" font-family="Times,serif" font-size="8.00">SchedulerWorker</text> | |
| <text text-anchor="middle" x="576" y="-3386.6" font-family="Times,serif" font-size="8.00">Thread</text> | |
| <text text-anchor="middle" x="576" y="-3377.6" font-family="Times,serif" font-size="8.00">ThreadMain</text> | |
| <text text-anchor="middle" x="576" y="-3368.6" font-family="Times,serif" font-size="8.00">0 of 1.35s (10.14%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N42 --> | |
| <g id="edge23" class="edge"><title>N6->N42</title> | |
| <g id="a_edge23"><a xlink:title="base::(anonymous namespace)::ThreadFunc -> base::internal::SchedulerWorker::Thread::ThreadMain (1.35s)"> | |
| <path fill="none" stroke="#b28457" d="M498.554,-3474.99C504.22,-3469.18 510.36,-3462.86 516,-3457 523.943,-3448.75 532.442,-3439.87 540.472,-3431.45"/> | |
| <polygon fill="#b28457" stroke="#b28457" points="543.02,-3433.84 547.382,-3424.19 537.951,-3429.02 543.02,-3433.84"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="base::(anonymous namespace)::ThreadFunc -> base::internal::SchedulerWorker::Thread::ThreadMain (1.35s)"> | |
| <text text-anchor="middle" x="547" y="-3445.8" font-family="Times,serif" font-size="14.00"> 1.35s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node28" class="node"><title>N28</title> | |
| <g id="a_node28"><a xlink:title="__pthread_mutex_unlock_usercnt (0.25s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="1010,-446 786,-446 786,-404 1010,-404 1010,-446"/> | |
| <text text-anchor="middle" x="898" y="-430" font-family="Times,serif" font-size="15.00">__pthread_mutex_unlock_usercnt</text> | |
| <text text-anchor="middle" x="898" y="-413" font-family="Times,serif" font-size="15.00">0.25s (1.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N28 --> | |
| <g id="edge137" class="edge"><title>N7->N28</title> | |
| <g id="a_edge137"><a xlink:title="base::MessageLoop::DoWork -> __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M850.702,-3163.19C1022.67,-3157.57 1632,-3132.05 1632,-3052.5 1632,-3052.5 1632,-3052.5 1632,-1394.5 1632,-1223.24 1505.22,-1219.83 1380,-1103 1370.25,-1093.9 1364.16,-1095.54 1356,-1085 1324.53,-1044.34 1337.08,-1022.89 1312,-978 1303.16,-962.168 1302.91,-955.331 1288,-945 1263.36,-927.924 1246.87,-945.136 1223,-927 1190.38,-902.213 1153.97,-800.683 1128,-769 1106.66,-742.967 1093,-744.311 1072,-718 1038.23,-675.689 1039.48,-658.64 1012,-612 978.943,-555.898 938.869,-491.257 916.113,-454.852"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="918.988,-452.847 910.716,-446.227 913.054,-456.561 918.988,-452.847"/> | |
| </a> | |
| </g> | |
| <g id="a_edge137-label"><a xlink:title="base::MessageLoop::DoWork -> __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <text text-anchor="middle" x="1649" y="-1799.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::RunTask (5.32s)"> | |
| <polygon fill="#eddbd5" stroke="#b22a00" points="850.5,-3083 761.5,-3083 761.5,-3020 850.5,-3020 850.5,-3083"/> | |
| <text text-anchor="middle" x="806" y="-3071" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="806" y="-3060" font-family="Times,serif" font-size="10.00">MessageLoop</text> | |
| <text text-anchor="middle" x="806" y="-3049" font-family="Times,serif" font-size="10.00">RunTask</text> | |
| <text text-anchor="middle" x="806" y="-3038" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="806" y="-3027" font-family="Times,serif" font-size="10.00">of 5.32s (39.97%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N48 --> | |
| <g id="edge4" class="edge"><title>N7->N48</title> | |
| <g id="a_edge4"><a xlink:title="base::MessageLoop::DoWork -> base::MessageLoop::RunTask (5.30s)"> | |
| <path fill="none" stroke="#b22b00" stroke-width="2" d="M806,-3133.9C806,-3121.43 806,-3106.82 806,-3093.46"/> | |
| <polygon fill="#b22b00" stroke="#b22b00" stroke-width="2" points="809.5,-3093.07 806,-3083.07 802.5,-3093.07 809.5,-3093.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="base::MessageLoop::DoWork -> base::MessageLoop::RunTask (5.30s)"> | |
| <text text-anchor="middle" x="823" y="-3104.8" font-family="Times,serif" font-size="14.00"> 5.30s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8 --> | |
| <g id="node8" class="node"><title>N8</title> | |
| <g id="a_node8"><a xlink:title="content::ResourceLoader::PrepareToReadMore (1.52s)"> | |
| <polygon fill="#ede6df" stroke="#b27d4c" points="1210.5,-1270.5 1125.5,-1270.5 1125.5,-1226.5 1210.5,-1226.5 1210.5,-1270.5"/> | |
| <text text-anchor="middle" x="1168" y="-1260.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1168" y="-1251.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1168" y="-1242.1" font-family="Times,serif" font-size="8.00">PrepareToReadMore</text> | |
| <text text-anchor="middle" x="1168" y="-1233.1" font-family="Times,serif" font-size="8.00">0 of 1.52s (11.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node31" class="node"><title>N31</title> | |
| <g id="a_node31"><a xlink:title="content::ResourceLoader::OnReadCompleted (1.16s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d64" points="1297.5,-1159 1220.5,-1159 1220.5,-1115 1297.5,-1115 1297.5,-1159"/> | |
| <text text-anchor="middle" x="1259" y="-1148.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1259" y="-1139.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1259" y="-1130.6" font-family="Times,serif" font-size="8.00">OnReadCompleted</text> | |
| <text text-anchor="middle" x="1259" y="-1121.6" font-family="Times,serif" font-size="8.00">0 of 1.16s (8.72%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N31 --> | |
| <g id="edge36" class="edge"><title>N8->N31</title> | |
| <g id="a_edge36"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::ResourceLoader::OnReadCompleted (0.82s)"> | |
| <path fill="none" stroke="#b29a7b" d="M1185.55,-1226.39C1199.58,-1209.5 1219.41,-1185.63 1234.93,-1166.96"/> | |
| <polygon fill="#b29a7b" stroke="#b29a7b" points="1237.81,-1168.98 1241.51,-1159.05 1232.42,-1164.5 1237.81,-1168.98"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::ResourceLoader::OnReadCompleted (0.82s)"> | |
| <text text-anchor="middle" x="1234" y="-1192.8" font-family="Times,serif" font-size="14.00"> 0.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52 --> | |
| <g id="node52" class="node"><title>N52</title> | |
| <g id="a_node52"><a xlink:title="net::URLRequest::Read (0.39s)"> | |
| <polygon fill="#edebe9" stroke="#b2a998" points="1131.5,-1159 1054.5,-1159 1054.5,-1115 1131.5,-1115 1131.5,-1159"/> | |
| <text text-anchor="middle" x="1093" y="-1148.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="1093" y="-1139.6" font-family="Times,serif" font-size="8.00">URLRequest</text> | |
| <text text-anchor="middle" x="1093" y="-1130.6" font-family="Times,serif" font-size="8.00">Read</text> | |
| <text text-anchor="middle" x="1093" y="-1121.6" font-family="Times,serif" font-size="8.00">0 of 0.39s (2.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N52 --> | |
| <g id="edge56" class="edge"><title>N8->N52</title> | |
| <g id="a_edge56"><a xlink:title="content::ResourceLoader::PrepareToReadMore ... net::URLRequest::Read (0.39s)"> | |
| <path fill="none" stroke="#b2a998" stroke-dasharray="1,5" d="M1140.46,-1226.36C1133.13,-1219.78 1125.68,-1212.1 1120,-1204 1112.58,-1193.42 1106.72,-1180.49 1102.38,-1168.88"/> | |
| <polygon fill="#b2a998" stroke="#b2a998" points="1105.57,-1167.4 1098.96,-1159.12 1098.97,-1169.72 1105.57,-1167.4"/> | |
| </a> | |
| </g> | |
| <g id="a_edge56-label"><a xlink:title="content::ResourceLoader::PrepareToReadMore ... net::URLRequest::Read (0.39s)"> | |
| <text text-anchor="middle" x="1137" y="-1192.8" font-family="Times,serif" font-size="14.00"> 0.39s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N99 --> | |
| <g id="node99" class="node"><title>N99</title> | |
| <g id="a_node99"><a xlink:title="content::LayeredResourceHandler::OnWillRead (0.39s)"> | |
| <polygon fill="#edebe9" stroke="#b2a998" points="1466,-927 1366,-927 1366,-883 1466,-883 1466,-927"/> | |
| <text text-anchor="middle" x="1416" y="-916.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1416" y="-907.6" font-family="Times,serif" font-size="8.00">LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="1416" y="-898.6" font-family="Times,serif" font-size="8.00">OnWillRead</text> | |
| <text text-anchor="middle" x="1416" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 0.39s (2.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N99 --> | |
| <g id="edge55" class="edge"><title>N8->N99</title> | |
| <g id="a_edge55"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::LayeredResourceHandler::OnWillRead (0.39s)"> | |
| <path fill="none" stroke="#b2a998" d="M1210.58,-1233.4C1241.08,-1221.29 1281,-1200.98 1306,-1171 1365.96,-1099.08 1397.17,-989.908 1409.53,-936.961"/> | |
| <polygon fill="#b2a998" stroke="#b2a998" points="1412.95,-937.675 1411.75,-927.149 1406.13,-936.128 1412.95,-937.675"/> | |
| </a> | |
| </g> | |
| <g id="a_edge55-label"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::LayeredResourceHandler::OnWillRead (0.39s)"> | |
| <text text-anchor="middle" x="1383" y="-1073.8" font-family="Times,serif" font-size="14.00"> 0.39s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9 --> | |
| <g id="node9" class="node"><title>N9</title> | |
| <g id="a_node9"><a xlink:title="__libc_recvmsg (1.25s)"> | |
| <polygon fill="#ede7e2" stroke="#b2895e" points="694,-3656 536,-3656 536,-3600 694,-3600 694,-3656"/> | |
| <text text-anchor="middle" x="615" y="-3634.4" font-family="Times,serif" font-size="22.00">__libc_recvmsg</text> | |
| <text text-anchor="middle" x="615" y="-3610.4" font-family="Times,serif" font-size="22.00">1.25s (9.39%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node25" class="node"><title>N25</title> | |
| <g id="a_node25"><a xlink:title="(anonymous namespace)::do_malloc (0.63s)"> | |
| <polygon fill="#edeae7" stroke="#b2a188" points="456.5,-469 259.5,-469 259.5,-381 456.5,-381 456.5,-469"/> | |
| <text text-anchor="middle" x="358" y="-450.6" font-family="Times,serif" font-size="18.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="358" y="-430.6" font-family="Times,serif" font-size="18.00">do_malloc</text> | |
| <text text-anchor="middle" x="358" y="-410.6" font-family="Times,serif" font-size="18.00">0.60s (4.51%)</text> | |
| <text text-anchor="middle" x="358" y="-390.6" font-family="Times,serif" font-size="18.00">of 0.63s (4.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N25 --> | |
| <g id="edge152" class="edge"><title>N10->N25</title> | |
| <g id="a_edge152"><a xlink:title="operator new -> (anonymous namespace)::do_malloc (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M324.466,-659.257C303.642,-643.952 278.691,-621.242 267,-594 254.03,-563.777 254.661,-550.486 267,-520 273.411,-504.16 283.914,-489.511 295.549,-476.722"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="298.148,-479.068 302.508,-469.412 293.078,-474.242 298.148,-479.068"/> | |
| </a> | |
| </g> | |
| <g id="a_edge152-label"><a xlink:title="operator new -> (anonymous namespace)::do_malloc (0.02s)"> | |
| <text text-anchor="middle" x="284" y="-553.3" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68 --> | |
| <g id="node68" class="node"><title>N68</title> | |
| <g id="a_node68"><a xlink:title="tc_malloc (0.64s)"> | |
| <polygon fill="#edeae7" stroke="#b2a187" points="406,-580.5 310,-580.5 310,-533.5 406,-533.5 406,-580.5"/> | |
| <text text-anchor="middle" x="358" y="-566.9" font-family="Times,serif" font-size="12.00">tc_malloc</text> | |
| <text text-anchor="middle" x="358" y="-553.9" font-family="Times,serif" font-size="12.00">0.06s (0.45%)</text> | |
| <text text-anchor="middle" x="358" y="-540.9" font-family="Times,serif" font-size="12.00">of 0.64s (4.81%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N68 --> | |
| <g id="edge42" class="edge"><title>N10->N68</title> | |
| <g id="a_edge42"><a xlink:title="operator new -> tc_malloc (0.62s)"> | |
| <path fill="none" stroke="#b2a188" d="M358,-659.441C358,-640.629 358,-612.761 358,-590.992"/> | |
| <polygon fill="#b2a188" stroke="#b2a188" points="361.5,-590.862 358,-580.862 354.5,-590.862 361.5,-590.862"/> | |
| </a> | |
| </g> | |
| <g id="a_edge42-label"><a xlink:title="operator new -> tc_malloc (0.62s)"> | |
| <text text-anchor="middle" x="375" y="-615.8" font-family="Times,serif" font-size="14.00"> 0.62s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node11" class="node"><title>N11</title> | |
| <g id="a_node11"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete (2.51s)"> | |
| <polygon fill="#eddfd6" stroke="#b24c0a" points="773.5,-1835 654.5,-1835 654.5,-1772 773.5,-1772 773.5,-1835"/> | |
| <text text-anchor="middle" x="714" y="-1823" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="714" y="-1812" font-family="Times,serif" font-size="10.00">HttpNetworkTransaction</text> | |
| <text text-anchor="middle" x="714" y="-1801" font-family="Times,serif" font-size="10.00">OnIOComplete</text> | |
| <text text-anchor="middle" x="714" y="-1790" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="714" y="-1779" font-family="Times,serif" font-size="10.00">of 2.51s (18.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N2 --> | |
| <g id="edge10" class="edge"><title>N11->N2</title> | |
| <g id="a_edge10"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpCache::Transaction::DoLoop (2.44s)"> | |
| <path fill="none" stroke="#b2500e" d="M714,-1771.93C714,-1759.58 714,-1745.05 714,-1731.44"/> | |
| <polygon fill="#b2500e" stroke="#b2500e" points="717.5,-1731.26 714,-1721.26 710.5,-1731.26 717.5,-1731.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpCache::Transaction::DoLoop (2.44s)"> | |
| <text text-anchor="middle" x="731" y="-1742.8" font-family="Times,serif" font-size="14.00"> 2.44s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N15 --> | |
| <g id="edge106" class="edge"><title>N11->N15</title> | |
| <g id="a_edge106"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpNetworkTransaction::DoLoop (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M654.473,-1781.02C624.759,-1767.7 590.282,-1747.93 567,-1721 536.558,-1685.79 517.728,-1635.36 507.371,-1599.74"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="510.741,-1598.8 504.671,-1590.11 504,-1600.69 510.741,-1598.8"/> | |
| </a> | |
| </g> | |
| <g id="a_edge106-label"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpNetworkTransaction::DoLoop (0.06s)"> | |
| <text text-anchor="middle" x="584" y="-1680.3" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12 --> | |
| <g id="node12" class="node"><title>N12</title> | |
| <g id="a_node12"><a xlink:title="g_main_context_dispatch (1.29s)"> | |
| <polygon fill="#ede7e1" stroke="#b2875b" points="830.5,-3300 707.5,-3300 707.5,-3259 830.5,-3259 830.5,-3300"/> | |
| <text text-anchor="middle" x="769" y="-3288" font-family="Times,serif" font-size="10.00">g_main_context_dispatch</text> | |
| <text text-anchor="middle" x="769" y="-3277" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="769" y="-3266" font-family="Times,serif" font-size="10.00">of 1.29s (9.69%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N7 --> | |
| <g id="edge43" class="edge"><title>N12->N7</title> | |
| <g id="a_edge43"><a xlink:title="g_main_context_dispatch ... base::MessageLoop::DoWork (0.61s)"> | |
| <path fill="none" stroke="#b2a289" stroke-dasharray="1,5" d="M775.445,-3258.99C780.197,-3244.61 786.828,-3224.54 792.699,-3206.76"/> | |
| <polygon fill="#b2a289" stroke="#b2a289" points="796.052,-3207.77 795.865,-3197.18 789.405,-3205.58 796.052,-3207.77"/> | |
| </a> | |
| </g> | |
| <g id="a_edge43-label"><a xlink:title="g_main_context_dispatch ... base::MessageLoop::DoWork (0.61s)"> | |
| <text text-anchor="middle" x="807" y="-3218.8" font-family="Times,serif" font-size="14.00"> 0.61s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N90 --> | |
| <g id="node90" class="node"><title>N90</title> | |
| <g id="a_node90"><a xlink:title="views::DesktopWindowTreeHostX11::DispatchEvent (0.62s)"> | |
| <polygon fill="#edeae7" stroke="#b2a188" points="638,-3187.5 524,-3187.5 524,-3143.5 638,-3143.5 638,-3187.5"/> | |
| <text text-anchor="middle" x="581" y="-3177.1" font-family="Times,serif" font-size="8.00">views</text> | |
| <text text-anchor="middle" x="581" y="-3168.1" font-family="Times,serif" font-size="8.00">DesktopWindowTreeHostX11</text> | |
| <text text-anchor="middle" x="581" y="-3159.1" font-family="Times,serif" font-size="8.00">DispatchEvent</text> | |
| <text text-anchor="middle" x="581" y="-3150.1" font-family="Times,serif" font-size="8.00">0 of 0.62s (4.66%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N90 --> | |
| <g id="edge41" class="edge"><title>N12->N90</title> | |
| <g id="a_edge41"><a xlink:title="g_main_context_dispatch ... views::DesktopWindowTreeHostX11::DispatchEvent (0.62s)"> | |
| <path fill="none" stroke="#b2a188" stroke-dasharray="1,5" d="M736.253,-3258.99C705.543,-3240.7 659.384,-3213.2 625.375,-3192.94"/> | |
| <polygon fill="#b2a188" stroke="#b2a188" points="626.951,-3189.8 616.569,-3187.69 623.368,-3195.81 626.951,-3189.8"/> | |
| </a> | |
| </g> | |
| <g id="a_edge41-label"><a xlink:title="g_main_context_dispatch ... views::DesktopWindowTreeHostX11::DispatchEvent (0.62s)"> | |
| <text text-anchor="middle" x="704" y="-3218.8" font-family="Times,serif" font-size="14.00"> 0.62s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N91 --> | |
| <g id="node91" class="node"><title>N91</title> | |
| <g id="a_node91"><a xlink:title="base::MessageLoop::DoDelayedWork (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ad" points="743.5,-3197 656.5,-3197 656.5,-3134 743.5,-3134 743.5,-3197"/> | |
| <text text-anchor="middle" x="700" y="-3185" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="700" y="-3174" font-family="Times,serif" font-size="10.00">MessageLoop</text> | |
| <text text-anchor="middle" x="700" y="-3163" font-family="Times,serif" font-size="10.00">DoDelayedWork</text> | |
| <text text-anchor="middle" x="700" y="-3152" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="700" y="-3141" font-family="Times,serif" font-size="10.00">of 0.08s (0.6%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N91 --> | |
| <g id="edge124" class="edge"><title>N12->N91</title> | |
| <g id="a_edge124"><a xlink:title="g_main_context_dispatch ... base::MessageLoop::DoDelayedWork (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M756.981,-3258.99C747.956,-3244.34 735.295,-3223.79 724.199,-3205.78"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="727.125,-3203.86 718.9,-3197.18 721.166,-3207.53 727.125,-3203.86"/> | |
| </a> | |
| </g> | |
| <g id="a_edge124-label"><a xlink:title="g_main_context_dispatch ... base::MessageLoop::DoDelayedWork (0.03s)"> | |
| <text text-anchor="middle" x="756" y="-3218.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node13" class="node"><title>N13</title> | |
| <g id="a_node13"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload (2.60s)"> | |
| <polygon fill="#edded5" stroke="#b24704" points="737.5,-2485 648.5,-2485 648.5,-2441 737.5,-2441 737.5,-2485"/> | |
| <text text-anchor="middle" x="693" y="-2474.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="693" y="-2465.6" font-family="Times,serif" font-size="8.00">Http2FrameDecoder</text> | |
| <text text-anchor="middle" x="693" y="-2456.6" font-family="Times,serif" font-size="8.00">StartDecodingPayload</text> | |
| <text text-anchor="middle" x="693" y="-2447.6" font-family="Times,serif" font-size="8.00">0 of 2.60s (19.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N10 --> | |
| <g id="edge126" class="edge"><title>N13->N10</title> | |
| <g id="a_edge126"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... operator new (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M648.249,-2459.19C563.431,-2452.88 384.145,-2434.5 344,-2390 288.549,-2328.53 334.698,-2279.94 286,-2213 263.356,-2181.87 236.137,-2194.81 216,-2162 152.892,-2059.19 147,-1199.13 147,-1078.5 147,-1078.5 147,-1078.5 147,-799.5 147,-728.179 240.343,-699.973 302.861,-689.08"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="303.693,-692.491 312.994,-687.417 302.559,-685.583 303.693,-692.491"/> | |
| </a> | |
| </g> | |
| <g id="a_edge126-label"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... operator new (0.03s)"> | |
| <text text-anchor="middle" x="174" y="-1552.3" 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="net::Http2DecoderAdapter::OnDataEnd (1.77s)"> | |
| <polygon fill="#ede4dd" stroke="#b2713b" points="737.5,-2380.5 648.5,-2380.5 648.5,-2336.5 737.5,-2336.5 737.5,-2380.5"/> | |
| <text text-anchor="middle" x="693" y="-2370.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="693" y="-2361.1" font-family="Times,serif" font-size="8.00">Http2DecoderAdapter</text> | |
| <text text-anchor="middle" x="693" y="-2352.1" font-family="Times,serif" font-size="8.00">OnDataEnd</text> | |
| <text text-anchor="middle" x="693" y="-2343.1" font-family="Times,serif" font-size="8.00">0 of 1.77s (13.30%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N38 --> | |
| <g id="edge20" class="edge"><title>N13->N38</title> | |
| <g id="a_edge20"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... net::Http2DecoderAdapter::OnDataEnd (1.55s)"> | |
| <path fill="none" stroke="#b27b4a" stroke-dasharray="1,5" d="M693,-2440.76C693,-2426.33 693,-2407 693,-2390.81"/> | |
| <polygon fill="#b27b4a" stroke="#b27b4a" points="696.5,-2390.71 693,-2380.71 689.5,-2390.71 696.5,-2390.71"/> | |
| </a> | |
| </g> | |
| <g id="a_edge20-label"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... net::Http2DecoderAdapter::OnDataEnd (1.55s)"> | |
| <text text-anchor="middle" x="710" y="-2411.8" font-family="Times,serif" font-size="14.00"> 1.55s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N100 --> | |
| <g id="node100" class="node"><title>N100</title> | |
| <g id="a_node100"><a xlink:title="net::SpdyHttpStream::OnHeadersReceived (0.91s)"> | |
| <polygon fill="#ede9e5" stroke="#b29775" points="630.5,-2380.5 547.5,-2380.5 547.5,-2336.5 630.5,-2336.5 630.5,-2380.5"/> | |
| <text text-anchor="middle" x="589" y="-2370.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="589" y="-2361.1" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="589" y="-2352.1" font-family="Times,serif" font-size="8.00">OnHeadersReceived</text> | |
| <text text-anchor="middle" x="589" y="-2343.1" font-family="Times,serif" font-size="8.00">0 of 0.91s (6.84%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N100 --> | |
| <g id="edge33" class="edge"><title>N13->N100</title> | |
| <g id="a_edge33"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... net::SpdyHttpStream::OnHeadersReceived (0.91s)"> | |
| <path fill="none" stroke="#b29775" stroke-dasharray="1,5" d="M671.451,-2440.76C655.973,-2425.51 634.936,-2404.77 617.987,-2388.07"/> | |
| <polygon fill="#b29775" stroke="#b29775" points="620.1,-2385.24 610.521,-2380.71 615.187,-2390.22 620.1,-2385.24"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-label"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... net::SpdyHttpStream::OnHeadersReceived (0.91s)"> | |
| <text text-anchor="middle" x="671" y="-2411.8" font-family="Times,serif" font-size="14.00"> 0.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72 --> | |
| <g id="node72" class="node"><title>N72</title> | |
| <g id="a_node72"><a xlink:title="net::SpdySession::DoReadLoop (2.90s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="733,-2722 653,-2722 653,-2678 733,-2678 733,-2722"/> | |
| <text text-anchor="middle" x="693" y="-2711.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="693" y="-2702.6" font-family="Times,serif" font-size="8.00">SpdySession</text> | |
| <text text-anchor="middle" x="693" y="-2693.6" font-family="Times,serif" font-size="8.00">DoReadLoop</text> | |
| <text text-anchor="middle" x="693" y="-2684.6" font-family="Times,serif" font-size="8.00">0 of 2.90s (21.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N72 --> | |
| <g id="edge7" class="edge"><title>N14->N72</title> | |
| <g id="a_edge7"><a xlink:title="net::SpdySession::PumpReadLoop -> net::SpdySession::DoReadLoop (2.90s)"> | |
| <path fill="none" stroke="#b24100" stroke-width="2" d="M693,-2795.32C693,-2777.65 693,-2752.23 693,-2732.23"/> | |
| <polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="696.5,-2732.05 693,-2722.05 689.5,-2732.05 696.5,-2732.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="net::SpdySession::PumpReadLoop -> net::SpdySession::DoReadLoop (2.90s)"> | |
| <text text-anchor="middle" x="710" y="-2761.8" font-family="Times,serif" font-size="14.00"> 2.90s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N10 --> | |
| <g id="edge120" class="edge"><title>N15->N10</title> | |
| <g id="a_edge120"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... operator new (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" stroke-dasharray="1,5" d="M477.784,-1521.88C435.677,-1446.08 339,-1253.03 339,-1078.5 339,-1078.5 339,-1078.5 339,-799.5 339,-770.233 344.864,-737.375 350.076,-713.948"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="353.558,-714.427 352.402,-703.895 346.738,-712.849 353.558,-714.427"/> | |
| </a> | |
| </g> | |
| <g id="a_edge120-label"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... operator new (0.04s)"> | |
| <text text-anchor="middle" x="364" y="-1133.3" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39 --> | |
| <g id="node39" class="node"><title>N39</title> | |
| <g id="a_node39"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a692" points="561,-1275 467,-1275 467,-1222 561,-1222 561,-1275"/> | |
| <text text-anchor="middle" x="514" y="-1264.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="514" y="-1255.6" font-family="Times,serif" font-size="8.00">HttpStreamFactoryImpl</text> | |
| <text text-anchor="middle" x="514" y="-1246.6" font-family="Times,serif" font-size="8.00">JobController</text> | |
| <text text-anchor="middle" x="514" y="-1237.6" font-family="Times,serif" font-size="8.00">RunLoop</text> | |
| <text text-anchor="middle" x="514" y="-1228.6" font-family="Times,serif" font-size="8.00">0 of 0.48s (3.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N39 --> | |
| <g id="edge58" class="edge"><title>N15->N39</title> | |
| <g id="a_edge58"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::HttpStreamFactoryImpl::JobController::RunLoop (0.34s)"> | |
| <path fill="none" stroke="#b2aa9b" stroke-dasharray="1,5" d="M498.852,-1521.72C502.075,-1463.81 508.688,-1344.97 512.007,-1285.32"/> | |
| <polygon fill="#b2aa9b" stroke="#b2aa9b" points="515.507,-1285.42 512.568,-1275.24 508.517,-1285.03 515.507,-1285.42"/> | |
| </a> | |
| </g> | |
| <g id="a_edge58-label"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::HttpStreamFactoryImpl::JobController::RunLoop (0.34s)"> | |
| <text text-anchor="middle" x="524" y="-1391.8" font-family="Times,serif" font-size="14.00"> 0.34s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16 --> | |
| <g id="node16" class="node"><title>N16</title> | |
| <g id="a_node16"><a xlink:title="mojo::Connector::ReadSingleMessage (1.97s)"> | |
| <polygon fill="#ede3db" stroke="#b2682e" points="462.5,-2722 381.5,-2722 381.5,-2678 462.5,-2678 462.5,-2722"/> | |
| <text text-anchor="middle" x="422" y="-2711.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="422" y="-2702.6" font-family="Times,serif" font-size="8.00">Connector</text> | |
| <text text-anchor="middle" x="422" y="-2693.6" font-family="Times,serif" font-size="8.00">ReadSingleMessage</text> | |
| <text text-anchor="middle" x="422" y="-2684.6" font-family="Times,serif" font-size="8.00">0 of 1.97s (14.80%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N87 --> | |
| <g id="node87" class="node"><title>N87</title> | |
| <g id="a_node87"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept (1.58s)"> | |
| <polygon fill="#ede5df" stroke="#b27a48" points="484,-2599 360,-2599 360,-2546 484,-2546 484,-2599"/> | |
| <text text-anchor="middle" x="422" y="-2588.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="422" y="-2579.6" font-family="Times,serif" font-size="8.00">mojom</text> | |
| <text text-anchor="middle" x="422" y="-2570.6" font-family="Times,serif" font-size="8.00">URLLoaderFactoryStubDispatch</text> | |
| <text text-anchor="middle" x="422" y="-2561.6" font-family="Times,serif" font-size="8.00">Accept</text> | |
| <text text-anchor="middle" x="422" y="-2552.6" font-family="Times,serif" font-size="8.00">0 of 1.58s (11.87%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N87 --> | |
| <g id="edge19" class="edge"><title>N16->N87</title> | |
| <g id="a_edge19"><a xlink:title="mojo::Connector::ReadSingleMessage ... content::mojom::URLLoaderFactoryStubDispatch::Accept (1.58s)"> | |
| <path fill="none" stroke="#b27a48" stroke-dasharray="1,5" d="M422,-2677.99C422,-2659.32 422,-2631.62 422,-2609.43"/> | |
| <polygon fill="#b27a48" stroke="#b27a48" points="425.5,-2609.36 422,-2599.36 418.5,-2609.36 425.5,-2609.36"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-label"><a xlink:title="mojo::Connector::ReadSingleMessage ... content::mojom::URLLoaderFactoryStubDispatch::Accept (1.58s)"> | |
| <text text-anchor="middle" x="439" y="-2630.8" font-family="Times,serif" font-size="14.00"> 1.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node18" class="node"><title>N18</title> | |
| <g id="a_node18"><a xlink:title="content::ResourceLoader::CompleteRead (1.16s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d64" points="1262.5,-1046.5 1179.5,-1046.5 1179.5,-983.5 1262.5,-983.5 1262.5,-1046.5"/> | |
| <text text-anchor="middle" x="1221" y="-1034.5" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="1221" y="-1023.5" font-family="Times,serif" font-size="10.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1221" y="-1012.5" font-family="Times,serif" font-size="10.00">CompleteRead</text> | |
| <text text-anchor="middle" x="1221" y="-1001.5" font-family="Times,serif" font-size="10.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="1221" y="-990.5" font-family="Times,serif" font-size="10.00">of 1.16s (8.72%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N8 --> | |
| <g id="edge32" class="edge"><title>N18->N8</title> | |
| <g id="a_edge32"><a xlink:title="content::ResourceLoader::CompleteRead -> content::ResourceLoader::PrepareToReadMore (0.91s)"> | |
| <path fill="none" stroke="#b29775" d="M1201.68,-1046.58C1192.49,-1062.72 1182.37,-1083.24 1177,-1103 1166.67,-1141.02 1165.62,-1186.66 1166.35,-1216.33"/> | |
| <polygon fill="#b29775" stroke="#b29775" points="1162.86,-1216.61 1166.69,-1226.49 1169.86,-1216.38 1162.86,-1216.61"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="content::ResourceLoader::CompleteRead -> content::ResourceLoader::PrepareToReadMore (0.91s)"> | |
| <text text-anchor="middle" x="1194" y="-1133.3" font-family="Times,serif" font-size="14.00"> 0.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45 --> | |
| <g id="node45" class="node"><title>N45</title> | |
| <g id="a_node45"><a xlink:title="content::ResourceLoader::~ResourceLoader (0.58s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="1309.5,-927 1232.5,-927 1232.5,-883 1309.5,-883 1309.5,-927"/> | |
| <text text-anchor="middle" x="1271" y="-916.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1271" y="-907.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1271" y="-898.6" font-family="Times,serif" font-size="8.00">~ResourceLoader</text> | |
| <text text-anchor="middle" x="1271" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 0.58s (4.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N45 --> | |
| <g id="edge45" class="edge"><title>N18->N45</title> | |
| <g id="a_edge45"><a xlink:title="content::ResourceLoader::CompleteRead ... content::ResourceLoader::~ResourceLoader (0.58s)"> | |
| <path fill="none" stroke="#b2a38b" stroke-dasharray="1,5" d="M1235.19,-983.34C1242.02,-968.607 1250.16,-951.004 1256.96,-936.316"/> | |
| <polygon fill="#b2a38b" stroke="#b2a38b" points="1260.19,-937.689 1261.21,-927.144 1253.83,-934.748 1260.19,-937.689"/> | |
| </a> | |
| </g> | |
| <g id="a_edge45-label"><a xlink:title="content::ResourceLoader::CompleteRead ... content::ResourceLoader::~ResourceLoader (0.58s)"> | |
| <text text-anchor="middle" x="1269" y="-948.8" font-family="Times,serif" font-size="14.00"> 0.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N92 --> | |
| <g id="node92" class="node"><title>N92</title> | |
| <g id="a_node92"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="1100,-927 1000,-927 1000,-883 1100,-883 1100,-927"/> | |
| <text text-anchor="middle" x="1050" y="-916.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1050" y="-907.6" font-family="Times,serif" font-size="8.00">LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="1050" y="-898.6" font-family="Times,serif" font-size="8.00">OnReadCompleted</text> | |
| <text text-anchor="middle" x="1050" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N92 --> | |
| <g id="edge66" class="edge"><title>N18->N92</title> | |
| <g id="a_edge66"><a xlink:title="content::ResourceLoader::CompleteRead -> content::LayeredResourceHandler::OnReadCompleted (0.23s)"> | |
| <path fill="none" stroke="#b2ada3" d="M1179.49,-1000.88C1138.28,-987.539 1080.08,-967.771 1072,-960 1065.44,-953.696 1060.78,-945.166 1057.49,-936.748"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="1060.73,-935.417 1054.22,-927.059 1054.1,-937.653 1060.73,-935.417"/> | |
| </a> | |
| </g> | |
| <g id="a_edge66-label"><a xlink:title="content::ResourceLoader::CompleteRead -> content::LayeredResourceHandler::OnReadCompleted (0.23s)"> | |
| <text text-anchor="middle" x="1089" y="-948.8" font-family="Times,serif" font-size="14.00"> 0.23s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node19" class="node"><title>N19</title> | |
| <g id="a_node19"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest (1.50s)"> | |
| <polygon fill="#ede6df" stroke="#b27e4d" points="479.5,-2485 364.5,-2485 364.5,-2441 479.5,-2441 479.5,-2485"/> | |
| <text text-anchor="middle" x="422" y="-2474.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="422" y="-2465.6" font-family="Times,serif" font-size="8.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="422" y="-2456.6" font-family="Times,serif" font-size="8.00">ContinuePendingBeginRequest</text> | |
| <text text-anchor="middle" x="422" y="-2447.6" font-family="Times,serif" font-size="8.00">0 of 1.50s (11.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node36" class="node"><title>N36</title> | |
| <g id="a_node36"><a xlink:title="content::ResourceLoader::StartRequest (0.80s)"> | |
| <polygon fill="#edeae6" stroke="#b29b7c" points="296.5,-2380.5 219.5,-2380.5 219.5,-2336.5 296.5,-2336.5 296.5,-2380.5"/> | |
| <text text-anchor="middle" x="258" y="-2370.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="258" y="-2361.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="258" y="-2352.1" font-family="Times,serif" font-size="8.00">StartRequest</text> | |
| <text text-anchor="middle" x="258" y="-2343.1" font-family="Times,serif" font-size="8.00">0 of 0.80s (6.01%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N36 --> | |
| <g id="edge38" class="edge"><title>N19->N36</title> | |
| <g id="a_edge38"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest ... content::ResourceLoader::StartRequest (0.80s)"> | |
| <path fill="none" stroke="#b29b7c" stroke-dasharray="1,5" d="M364.228,-2459.51C334.639,-2455.31 300.081,-2445.44 277,-2423 268.347,-2414.59 263.595,-2402.41 261,-2390.96"/> | |
| <polygon fill="#b29b7c" stroke="#b29b7c" points="264.385,-2390.01 259.173,-2380.78 257.495,-2391.24 264.385,-2390.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge38-label"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest ... content::ResourceLoader::StartRequest (0.80s)"> | |
| <text text-anchor="middle" x="294" y="-2411.8" font-family="Times,serif" font-size="14.00"> 0.80s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63 --> | |
| <g id="node63" class="node"><title>N63</title> | |
| <g id="a_node63"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler (0.58s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="490.5,-2390 353.5,-2390 353.5,-2327 490.5,-2327 490.5,-2390"/> | |
| <text text-anchor="middle" x="422" y="-2378" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="422" y="-2367" font-family="Times,serif" font-size="10.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="422" y="-2356" font-family="Times,serif" font-size="10.00">CreateResourceHandler</text> | |
| <text text-anchor="middle" x="422" y="-2345" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="422" y="-2334" font-family="Times,serif" font-size="10.00">of 0.58s (4.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19->N63 --> | |
| <g id="edge44" class="edge"><title>N19->N63</title> | |
| <g id="a_edge44"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest -> content::ResourceDispatcherHostImpl::CreateResourceHandler (0.58s)"> | |
| <path fill="none" stroke="#b2a38b" d="M422,-2440.76C422,-2429.08 422,-2414.19 422,-2400.35"/> | |
| <polygon fill="#b2a38b" stroke="#b2a38b" points="425.5,-2400.04 422,-2390.04 418.5,-2400.04 425.5,-2400.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge44-label"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest -> content::ResourceDispatcherHostImpl::CreateResourceHandler (0.58s)"> | |
| <text text-anchor="middle" x="439" y="-2411.8" font-family="Times,serif" font-size="14.00"> 0.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node20" class="node"><title>N20</title> | |
| <g id="a_node20"><a xlink:title="__poll (0.58s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="830,-3652 712,-3652 712,-3604 830,-3604 830,-3652"/> | |
| <text text-anchor="middle" x="771" y="-3633.6" font-family="Times,serif" font-size="18.00">__poll</text> | |
| <text text-anchor="middle" x="771" y="-3613.6" font-family="Times,serif" font-size="18.00">0.58s (4.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node21" class="node"><title>N21</title> | |
| <g id="a_node21"><a xlink:title="net::SpdyHttpStream::OnClose (1.70s)"> | |
| <polygon fill="#ede4de" stroke="#b27540" points="759,-2162 679,-2162 679,-2118 759,-2118 759,-2162"/> | |
| <text text-anchor="middle" x="719" y="-2151.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="719" y="-2142.6" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="719" y="-2133.6" font-family="Times,serif" font-size="8.00">OnClose</text> | |
| <text text-anchor="middle" x="719" y="-2124.6" font-family="Times,serif" font-size="8.00">0 of 1.70s (12.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80 --> | |
| <g id="node80" class="node"><title>N80</title> | |
| <g id="a_node80"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback (0.82s)"> | |
| <polygon fill="#ede9e5" stroke="#b29a7b" points="764.5,-2046 663.5,-2046 663.5,-2002 764.5,-2002 764.5,-2046"/> | |
| <text text-anchor="middle" x="714" y="-2035.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="714" y="-2026.6" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="714" y="-2017.6" font-family="Times,serif" font-size="8.00">DoBufferedReadCallback</text> | |
| <text text-anchor="middle" x="714" y="-2008.6" font-family="Times,serif" font-size="8.00">0 of 0.82s (6.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N80 --> | |
| <g id="edge37" class="edge"><title>N21->N80</title> | |
| <g id="a_edge37"><a xlink:title="net::SpdyHttpStream::OnClose -> net::SpdyHttpStream::DoBufferedReadCallback (0.82s)"> | |
| <path fill="none" stroke="#b29a7b" d="M718.071,-2117.82C717.31,-2100.47 716.222,-2075.66 715.362,-2056.05"/> | |
| <polygon fill="#b29a7b" stroke="#b29a7b" points="718.859,-2055.9 714.924,-2046.06 711.865,-2056.21 718.859,-2055.9"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="net::SpdyHttpStream::OnClose -> net::SpdyHttpStream::DoBufferedReadCallback (0.82s)"> | |
| <text text-anchor="middle" x="735" y="-2088.8" font-family="Times,serif" font-size="14.00"> 0.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node22" class="node"><title>N22</title> | |
| <g id="a_node22"><a xlink:title="syscall (0.39s)"> | |
| <polygon fill="#edebe9" stroke="#b2a998" points="937.5,-309 830.5,-309 830.5,-265 937.5,-265 937.5,-309"/> | |
| <text text-anchor="middle" x="884" y="-292.2" font-family="Times,serif" font-size="16.00">syscall</text> | |
| <text text-anchor="middle" x="884" y="-274.2" font-family="Times,serif" font-size="16.00">0.39s (2.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N67 --> | |
| <g id="edge100" class="edge"><title>N23->N67</title> | |
| <g id="a_edge100"><a xlink:title="base::internal::Invoker::RunOnce ... disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded (0.07s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1151.63,-2659.92C1144.06,-2535.18 1121,-2153.98 1121,-2141 1121,-2141 1121,-2141 1121,-1745.5 1121,-1653.54 1024.67,-1682.68 950,-1629 930.072,-1614.67 908.22,-1598.17 890.503,-1584.58"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="892.225,-1581.49 882.165,-1578.16 887.957,-1587.04 892.225,-1581.49"/> | |
| </a> | |
| </g> | |
| <g id="a_edge100-label"><a xlink:title="base::internal::Invoker::RunOnce ... disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded (0.07s)"> | |
| <text text-anchor="middle" x="1139" y="-2136.3" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73 --> | |
| <g id="node73" class="node"><title>N73</title> | |
| <g id="a_node73"><a xlink:title="base::internal::WeakReference::is_valid (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="1135,-2609 1043,-2609 1043,-2536 1135,-2536 1135,-2609"/> | |
| <text text-anchor="middle" x="1089" y="-2595.4" font-family="Times,serif" font-size="12.00">base</text> | |
| <text text-anchor="middle" x="1089" y="-2582.4" font-family="Times,serif" font-size="12.00">internal</text> | |
| <text text-anchor="middle" x="1089" y="-2569.4" font-family="Times,serif" font-size="12.00">WeakReference</text> | |
| <text text-anchor="middle" x="1089" y="-2556.4" font-family="Times,serif" font-size="12.00">is_valid</text> | |
| <text text-anchor="middle" x="1089" y="-2543.4" font-family="Times,serif" font-size="12.00">0.09s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N73 --> | |
| <g id="edge116" class="edge"><title>N23->N73</title> | |
| <g id="a_edge116"><a xlink:title="base::internal::Invoker::RunOnce ... base::internal::WeakReference::is_valid (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" stroke-dasharray="1,5" d="M1125.48,-2659.89C1121.72,-2654.03 1118.11,-2647.95 1115,-2642 1111.15,-2634.63 1107.57,-2626.55 1104.37,-2618.61"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="1107.54,-2617.11 1100.67,-2609.05 1101.01,-2619.64 1107.54,-2617.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge116-label"><a xlink:title="base::internal::Invoker::RunOnce ... base::internal::WeakReference::is_valid (0.04s)"> | |
| <text text-anchor="middle" x="1132" y="-2630.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N85 --> | |
| <g id="edge95" class="edge"><title>N23->N85</title> | |
| <g id="a_edge95"><a xlink:title="base::internal::Invoker::RunOnce ... __lxstat (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1199.27,-2689.84C1255.18,-2675.57 1343,-2642.23 1343,-2573.5 1343,-2573.5 1343,-2573.5 1343,-1489.5 1343,-1339.16 1287.06,-1429.35 1518,-945 1589.96,-794.078 1671.99,-787.455 1719,-627 1753.86,-508.001 1755.65,-466.767 1720,-348 1699.91,-281.074 1647.94,-215.945 1617.39,-181.74"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1619.79,-179.179 1610.48,-174.125 1614.61,-183.883 1619.79,-179.179"/> | |
| </a> | |
| </g> | |
| <g id="a_edge95-label"><a xlink:title="base::internal::Invoker::RunOnce ... __lxstat (0.08s)"> | |
| <text text-anchor="middle" x="1360" y="-1439.3" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node24" class="node"><title>N24</title> | |
| <g id="a_node24"><a xlink:title="net::SpdyHttpStream::DoResponseCallback (1.59s)"> | |
| <polygon fill="#ede5de" stroke="#b27a47" points="756.5,-1930 671.5,-1930 671.5,-1886 756.5,-1886 756.5,-1930"/> | |
| <text text-anchor="middle" x="714" y="-1919.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="714" y="-1910.6" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="714" y="-1901.6" font-family="Times,serif" font-size="8.00">DoResponseCallback</text> | |
| <text text-anchor="middle" x="714" y="-1892.6" font-family="Times,serif" font-size="8.00">0 of 1.59s (11.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24->N11 --> | |
| <g id="edge18" class="edge"><title>N24->N11</title> | |
| <g id="a_edge18"><a xlink:title="net::SpdyHttpStream::DoResponseCallback -> net::HttpNetworkTransaction::OnIOComplete (1.59s)"> | |
| <path fill="none" stroke="#b27a47" d="M714,-1885.76C714,-1874.08 714,-1859.19 714,-1845.35"/> | |
| <polygon fill="#b27a47" stroke="#b27a47" points="717.5,-1845.04 714,-1835.04 710.5,-1845.04 717.5,-1845.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="net::SpdyHttpStream::DoResponseCallback -> net::HttpNetworkTransaction::OnIOComplete (1.59s)"> | |
| <text text-anchor="middle" x="731" y="-1856.8" font-family="Times,serif" font-size="14.00"> 1.59s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26 --> | |
| <g id="node26" class="node"><title>N26</title> | |
| <g id="a_node26"><a xlink:title="base::MessagePumpLibevent::OnLibeventNotification (1.63s)"> | |
| <polygon fill="#ede5de" stroke="#b27845" points="468,-3073.5 374,-3073.5 374,-3029.5 468,-3029.5 468,-3073.5"/> | |
| <text text-anchor="middle" x="421" y="-3063.1" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="421" y="-3054.1" font-family="Times,serif" font-size="8.00">MessagePumpLibevent</text> | |
| <text text-anchor="middle" x="421" y="-3045.1" font-family="Times,serif" font-size="8.00">OnLibeventNotification</text> | |
| <text text-anchor="middle" x="421" y="-3036.1" font-family="Times,serif" font-size="8.00">0 of 1.63s (12.25%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N14 --> | |
| <g id="edge28" class="edge"><title>N26->N14</title> | |
| <g id="a_edge28"><a xlink:title="base::MessagePumpLibevent::OnLibeventNotification ... net::SpdySession::PumpReadLoop (1.07s)"> | |
| <path fill="none" stroke="#b2906a" stroke-dasharray="1,5" d="M441.242,-3029.37C453.586,-3016.75 469.853,-3000.59 485,-2987 543.216,-2934.78 614.774,-2878.4 656.978,-2845.9"/> | |
| <polygon fill="#b2906a" stroke="#b2906a" points="659.216,-2848.59 665.014,-2839.72 654.952,-2843.04 659.216,-2848.59"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-label"><a xlink:title="base::MessagePumpLibevent::OnLibeventNotification ... net::SpdySession::PumpReadLoop (1.07s)"> | |
| <text text-anchor="middle" x="611" y="-2928.3" font-family="Times,serif" font-size="14.00"> 1.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37 --> | |
| <g id="node37" class="node"><title>N37</title> | |
| <g id="a_node37"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage (0.56s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="419,-2958.5 339,-2958.5 339,-2905.5 419,-2905.5 419,-2958.5"/> | |
| <text text-anchor="middle" x="379" y="-2948.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="379" y="-2939.1" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="379" y="-2930.1" font-family="Times,serif" font-size="8.00">NodeChannel</text> | |
| <text text-anchor="middle" x="379" y="-2921.1" font-family="Times,serif" font-size="8.00">OnChannelMessage</text> | |
| <text text-anchor="middle" x="379" y="-2912.1" font-family="Times,serif" font-size="8.00">0 of 0.56s (4.21%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N37 --> | |
| <g id="edge47" class="edge"><title>N26->N37</title> | |
| <g id="a_edge47"><a xlink:title="base::MessagePumpLibevent::OnLibeventNotification ... mojo::edk::NodeChannel::OnChannelMessage (0.56s)"> | |
| <path fill="none" stroke="#b2a38c" stroke-dasharray="1,5" d="M413.491,-3029.49C407.436,-3012.55 398.785,-2988.35 391.662,-2968.42"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="394.864,-2966.98 388.202,-2958.75 388.273,-2969.34 394.864,-2966.98"/> | |
| </a> | |
| </g> | |
| <g id="a_edge47-label"><a xlink:title="base::MessagePumpLibevent::OnLibeventNotification ... mojo::edk::NodeChannel::OnChannelMessage (0.56s)"> | |
| <text text-anchor="middle" x="420" y="-2990.8" font-family="Times,serif" font-size="14.00"> 0.56s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N5 --> | |
| <g id="edge3" class="edge"><title>N27->N5</title> | |
| <g id="a_edge3"><a xlink:title="base::RunLoop::Run -> base::MessagePumpLibevent::Run (6.42s)"> | |
| <path fill="none" stroke="#b22300" stroke-width="3" d="M478,-3370.77C478,-3354.1 478,-3330.66 478,-3311.84"/> | |
| <polygon fill="#b22300" stroke="#b22300" stroke-width="3" points="481.5,-3311.66 478,-3301.66 474.5,-3311.66 481.5,-3311.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="base::RunLoop::Run -> base::MessagePumpLibevent::Run (6.42s)"> | |
| <text text-anchor="middle" x="495" y="-3332.8" font-family="Times,serif" font-size="14.00"> 6.42s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N91 --> | |
| <g id="edge115" class="edge"><title>N27->N91</title> | |
| <g id="a_edge115"><a xlink:title="base::RunLoop::Run ... base::MessageLoop::DoDelayedWork (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" stroke-dasharray="1,5" d="M496.19,-3370.59C502.743,-3362.48 509.995,-3353.03 516,-3344 542.995,-3303.42 535.447,-3283.35 569,-3248 575.432,-3241.22 613.77,-3217.62 647.321,-3197.55"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="649.381,-3200.4 656.175,-3192.27 645.794,-3194.39 649.381,-3200.4"/> | |
| </a> | |
| </g> | |
| <g id="a_edge115-label"><a xlink:title="base::RunLoop::Run ... base::MessageLoop::DoDelayedWork (0.04s)"> | |
| <text text-anchor="middle" x="586" y="-3275.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node29" class="node"><title>N29</title> | |
| <g id="a_node29"><a xlink:title="ui::EventDispatcher::ProcessEvent (0.43s)"> | |
| <polygon fill="#edebe9" stroke="#b2a895" points="945.5,-2954 868.5,-2954 868.5,-2910 945.5,-2910 945.5,-2954"/> | |
| <text text-anchor="middle" x="907" y="-2943.6" font-family="Times,serif" font-size="8.00">ui</text> | |
| <text text-anchor="middle" x="907" y="-2934.6" font-family="Times,serif" font-size="8.00">EventDispatcher</text> | |
| <text text-anchor="middle" x="907" y="-2925.6" font-family="Times,serif" font-size="8.00">ProcessEvent</text> | |
| <text text-anchor="middle" x="907" y="-2916.6" font-family="Times,serif" font-size="8.00">0 of 0.43s (3.23%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N3 --> | |
| <g id="edge153" class="edge"><title>N29->N3</title> | |
| <g id="a_edge153"><a xlink:title="ui::EventDispatcher::ProcessEvent ... <unknown> (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M945.815,-2918.06C993.094,-2902.73 1075.62,-2877.33 1148,-2862 1316.98,-2826.2 1418.87,-2882.15 1517,-2740 1599.77,-2620.1 1570,-2562.19 1570,-2416.5 1570,-2416.5 1570,-2416.5 1570,-2091.5 1570,-1879.19 1566.23,-1825.57 1584,-1614 1616.65,-1225.2 1705,-1134.67 1705,-744.5 1705,-744.5 1705,-744.5 1705,-556 1705,-477.812 1728.96,-446.977 1687,-381 1674.4,-361.189 1655.93,-345.015 1636.09,-332.044"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1637.85,-329.017 1627.52,-326.679 1634.14,-334.951 1637.85,-329.017"/> | |
| </a> | |
| </g> | |
| <g id="a_edge153-label"><a xlink:title="ui::EventDispatcher::ProcessEvent ... <unknown> (0.02s)"> | |
| <text text-anchor="middle" x="1601" y="-1617.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47 --> | |
| <g id="node47" class="node"><title>N47</title> | |
| <g id="a_node47"><a xlink:title="mojo::Connector::Accept (0.24s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada2" points="848.5,-822.5 771.5,-822.5 771.5,-778.5 848.5,-778.5 848.5,-822.5"/> | |
| <text text-anchor="middle" x="810" y="-812.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="810" y="-803.1" font-family="Times,serif" font-size="8.00">Connector</text> | |
| <text text-anchor="middle" x="810" y="-794.1" font-family="Times,serif" font-size="8.00">Accept</text> | |
| <text text-anchor="middle" x="810" y="-785.1" font-family="Times,serif" font-size="8.00">0 of 0.24s (1.80%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N47 --> | |
| <g id="edge129" class="edge"><title>N29->N47</title> | |
| <g id="a_edge129"><a xlink:title="ui::EventDispatcher::ProcessEvent ... mojo::Connector::Accept (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M939.102,-2909.74C960.088,-2894.09 986.251,-2870.91 1001,-2844 1017.82,-2813.31 1015,-2801.5 1015,-2766.5 1015,-2766.5 1015,-2766.5 1015,-2091.5 1015,-2041.59 1009.95,-2028.62 995,-1981 941.272,-1809.85 950.915,-1743.71 827,-1614 814.917,-1601.35 801.111,-1610.93 792,-1596 773.479,-1565.65 789.219,-1551.45 792,-1516 795.344,-1473.39 798.542,-1462.9 807,-1421 820.224,-1355.49 834.941,-1341.34 843,-1275 845.84,-1251.62 843.579,-1245.55 843,-1222 840.333,-1113.46 840.086,-1086.19 831,-978 826.717,-927.003 819.17,-868.007 814.386,-832.778"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="817.822,-832.075 812.996,-822.643 810.887,-833.026 817.822,-832.075"/> | |
| </a> | |
| </g> | |
| <g id="a_edge129-label"><a xlink:title="ui::EventDispatcher::ProcessEvent ... mojo::Connector::Accept (0.03s)"> | |
| <text text-anchor="middle" x="980" y="-1856.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N81 --> | |
| <g id="node81" class="node"><title>N81</title> | |
| <g id="a_node81"><a xlink:title="mojo::Message::Message (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="753.5,-822.5 676.5,-822.5 676.5,-778.5 753.5,-778.5 753.5,-822.5"/> | |
| <text text-anchor="middle" x="715" y="-812.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="715" y="-803.1" font-family="Times,serif" font-size="8.00">Message</text> | |
| <text text-anchor="middle" x="715" y="-794.1" font-family="Times,serif" font-size="8.00">Message</text> | |
| <text text-anchor="middle" x="715" y="-785.1" font-family="Times,serif" font-size="8.00">0 of 0.09s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N81 --> | |
| <g id="edge154" class="edge"><title>N29->N81</title> | |
| <g id="a_edge154"><a xlink:title="ui::EventDispatcher::ProcessEvent ... mojo::Message::Message (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M901.954,-2909.79C879.892,-2815.12 793,-2421.46 793,-2093.5 793,-2093.5 793,-2093.5 793,-1907 793,-1891.95 791.736,-1783.48 782,-1772 760.661,-1746.85 740.196,-1767.27 710,-1754 685.625,-1743.28 678.555,-1740.1 660,-1721 626.479,-1686.5 616.17,-1675.26 603,-1629 534.133,-1387.09 712.294,-1332.15 759,-1085 776.299,-993.464 744.835,-884.357 726.627,-832.212"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="729.84,-830.804 723.18,-822.564 723.248,-833.159 729.84,-830.804"/> | |
| </a> | |
| </g> | |
| <g id="a_edge154-label"><a xlink:title="ui::EventDispatcher::ProcessEvent ... mojo::Message::Message (0.02s)"> | |
| <text text-anchor="middle" x="810" y="-1856.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N89 --> | |
| <g id="node89" class="node"><title>N89</title> | |
| <g id="a_node89"><a xlink:title="std::__1::__tree::find (0.07s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="554,-2067 458,-2067 458,-1981 554,-1981 554,-2067"/> | |
| <text text-anchor="middle" x="506" y="-2053.4" font-family="Times,serif" font-size="12.00">std</text> | |
| <text text-anchor="middle" x="506" y="-2040.4" font-family="Times,serif" font-size="12.00">__1</text> | |
| <text text-anchor="middle" x="506" y="-2027.4" font-family="Times,serif" font-size="12.00">__tree</text> | |
| <text text-anchor="middle" x="506" y="-2014.4" font-family="Times,serif" font-size="12.00">find</text> | |
| <text text-anchor="middle" x="506" y="-2001.4" font-family="Times,serif" font-size="12.00">0.06s (0.45%)</text> | |
| <text text-anchor="middle" x="506" y="-1988.4" font-family="Times,serif" font-size="12.00">of 0.07s (0.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N89 --> | |
| <g id="edge155" class="edge"><title>N29->N89</title> | |
| <g id="a_edge155"><a xlink:title="ui::EventDispatcher::ProcessEvent ... std::__1::__tree::find (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M907.266,-2909.81C907.43,-2846.22 903.302,-2652.22 851,-2503 816.483,-2404.52 825.917,-2358.65 744,-2294 717.43,-2273.03 694.256,-2299.61 670,-2276 617.847,-2225.24 667.527,-2178.45 627,-2118 610.575,-2093.5 585.552,-2072.72 562.516,-2057.06"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="564.411,-2054.12 554.139,-2051.52 560.552,-2059.96 564.411,-2054.12"/> | |
| </a> | |
| </g> | |
| <g id="a_edge155-label"><a xlink:title="ui::EventDispatcher::ProcessEvent ... std::__1::__tree::find (0.02s)"> | |
| <text text-anchor="middle" x="862" y="-2459.3" 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="base::internal::Invoker::Run (0.87s)"> | |
| <polygon fill="#ede9e5" stroke="#b29878" points="1508,-2740 1418,-2740 1418,-2660 1508,-2660 1508,-2740"/> | |
| <text text-anchor="middle" x="1463" y="-2727.2" font-family="Times,serif" font-size="11.00">base</text> | |
| <text text-anchor="middle" x="1463" y="-2715.2" font-family="Times,serif" font-size="11.00">internal</text> | |
| <text text-anchor="middle" x="1463" y="-2703.2" font-family="Times,serif" font-size="11.00">Invoker</text> | |
| <text text-anchor="middle" x="1463" y="-2691.2" font-family="Times,serif" font-size="11.00">Run</text> | |
| <text text-anchor="middle" x="1463" y="-2679.2" font-family="Times,serif" font-size="11.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="1463" y="-2667.2" font-family="Times,serif" font-size="11.00">of 0.87s (6.54%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N96 --> | |
| <g id="node96" class="node"><title>N96</title> | |
| <g id="a_node96"><a xlink:title="disk_cache::SimpleSynchronousEntry::InitializeForCreate (0.63s)"> | |
| <polygon fill="#edeae7" stroke="#b2a188" points="1516,-2594.5 1418,-2594.5 1418,-2550.5 1516,-2550.5 1516,-2594.5"/> | |
| <text text-anchor="middle" x="1467" y="-2584.1" font-family="Times,serif" font-size="8.00">disk_cache</text> | |
| <text text-anchor="middle" x="1467" y="-2575.1" font-family="Times,serif" font-size="8.00">SimpleSynchronousEntry</text> | |
| <text text-anchor="middle" x="1467" y="-2566.1" font-family="Times,serif" font-size="8.00">InitializeForCreate</text> | |
| <text text-anchor="middle" x="1467" y="-2557.1" font-family="Times,serif" font-size="8.00">0 of 0.63s (4.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N96 --> | |
| <g id="edge40" class="edge"><title>N30->N96</title> | |
| <g id="a_edge40"><a xlink:title="base::internal::Invoker::Run ... disk_cache::SimpleSynchronousEntry::InitializeForCreate (0.63s)"> | |
| <path fill="none" stroke="#b2a188" stroke-dasharray="1,5" d="M1464.24,-2659.98C1464.81,-2642.27 1465.47,-2621.61 1466,-2604.92"/> | |
| <polygon fill="#b2a188" stroke="#b2a188" points="1469.51,-2604.71 1466.33,-2594.6 1462.51,-2604.48 1469.51,-2604.71"/> | |
| </a> | |
| </g> | |
| <g id="a_edge40-label"><a xlink:title="base::internal::Invoker::Run ... disk_cache::SimpleSynchronousEntry::InitializeForCreate (0.63s)"> | |
| <text text-anchor="middle" x="1483" y="-2630.8" font-family="Times,serif" font-size="14.00"> 0.63s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N18 --> | |
| <g id="edge25" class="edge"><title>N31->N18</title> | |
| <g id="a_edge25"><a xlink:title="content::ResourceLoader::OnReadCompleted -> content::ResourceLoader::CompleteRead (1.16s)"> | |
| <path fill="none" stroke="#b28d64" d="M1252.29,-1114.82C1247.19,-1098.71 1240.01,-1076.04 1233.82,-1056.48"/> | |
| <polygon fill="#b28d64" stroke="#b28d64" points="1237.13,-1055.36 1230.78,-1046.88 1230.46,-1057.47 1237.13,-1055.36"/> | |
| </a> | |
| </g> | |
| <g id="a_edge25-label"><a xlink:title="content::ResourceLoader::OnReadCompleted -> content::ResourceLoader::CompleteRead (1.16s)"> | |
| <text text-anchor="middle" x="1260" y="-1073.8" font-family="Times,serif" font-size="14.00"> 1.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32->N16 --> | |
| <g id="edge11" class="edge"><title>N32->N16</title> | |
| <g id="a_edge11"><a xlink:title="mojo::SimpleWatcher::OnHandleReady ... mojo::Connector::ReadSingleMessage (1.97s)"> | |
| <path fill="none" stroke="#b2682e" stroke-dasharray="1,5" d="M422,-2795.32C422,-2777.65 422,-2752.23 422,-2732.23"/> | |
| <polygon fill="#b2682e" stroke="#b2682e" points="425.5,-2732.05 422,-2722.05 418.5,-2732.05 425.5,-2732.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="mojo::SimpleWatcher::OnHandleReady ... mojo::Connector::ReadSingleMessage (1.97s)"> | |
| <text text-anchor="middle" x="439" y="-2761.8" font-family="Times,serif" font-size="14.00"> 1.97s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node33" class="node"><title>N33</title> | |
| <g id="a_node33"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame (2.83s)"> | |
| <polygon fill="#edded5" stroke="#b24200" points="737.5,-2594.5 648.5,-2594.5 648.5,-2550.5 737.5,-2550.5 737.5,-2594.5"/> | |
| <text text-anchor="middle" x="693" y="-2584.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="693" y="-2575.1" font-family="Times,serif" font-size="8.00">Http2DecoderAdapter</text> | |
| <text text-anchor="middle" x="693" y="-2566.1" font-family="Times,serif" font-size="8.00">ProcessInputFrame</text> | |
| <text text-anchor="middle" x="693" y="-2557.1" font-family="Times,serif" font-size="8.00">0 of 2.83s (21.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N13 --> | |
| <g id="edge9" class="edge"><title>N33->N13</title> | |
| <g id="a_edge9"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame -> net::Http2FrameDecoder::StartDecodingPayload (2.60s)"> | |
| <path fill="none" stroke="#b24704" d="M693,-2550.26C693,-2534.65 693,-2513.19 693,-2495.58"/> | |
| <polygon fill="#b24704" stroke="#b24704" points="696.5,-2495.19 693,-2485.19 689.5,-2495.19 696.5,-2495.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame -> net::Http2FrameDecoder::StartDecodingPayload (2.60s)"> | |
| <text text-anchor="middle" x="710" y="-2506.8" font-family="Times,serif" font-size="14.00"> 2.60s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node34" class="node"><title>N34</title> | |
| <g id="a_node34"><a xlink:title="__libc_send (0.54s)"> | |
| <polygon fill="#edebe8" stroke="#b2a48e" points="966,-3652 848,-3652 848,-3604 966,-3604 966,-3652"/> | |
| <text text-anchor="middle" x="907" y="-3633.6" font-family="Times,serif" font-size="18.00">__libc_send</text> | |
| <text text-anchor="middle" x="907" y="-3613.6" font-family="Times,serif" font-size="18.00">0.54s (4.06%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node35" class="node"><title>N35</title> | |
| <g id="a_node35"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper (0.44s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="998,-713 900,-713 900,-650 998,-650 998,-713"/> | |
| <text text-anchor="middle" x="949" y="-701" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="949" y="-690" font-family="Times,serif" font-size="10.00">BrowserThreadImpl</text> | |
| <text text-anchor="middle" x="949" y="-679" font-family="Times,serif" font-size="10.00">PostTaskHelper</text> | |
| <text text-anchor="middle" x="949" y="-668" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="949" y="-657" font-family="Times,serif" font-size="10.00">of 0.44s (3.31%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N22 --> | |
| <g id="edge92" class="edge"><title>N35->N22</title> | |
| <g id="a_edge92"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper ... syscall (0.09s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M912.185,-649.936C870.159,-612.4 803.778,-544.369 777,-469 763.906,-432.146 760.78,-416.589 777,-381 789.636,-353.275 815.073,-330.616 837.976,-314.607"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="839.937,-317.507 846.27,-309.013 836.023,-311.703 839.937,-317.507"/> | |
| </a> | |
| </g> | |
| <g id="a_edge92-label"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper ... syscall (0.09s)"> | |
| <text text-anchor="middle" x="808" y="-490.8" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43 --> | |
| <g id="node43" class="node"><title>N43</title> | |
| <g id="a_node43"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask (0.36s)"> | |
| <polygon fill="#edece9" stroke="#b2aa9a" points="1177.5,-594 1054.5,-594 1054.5,-520 1177.5,-520 1177.5,-594"/> | |
| <text text-anchor="middle" x="1116" y="-582" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="1116" y="-571" font-family="Times,serif" font-size="10.00">internal</text> | |
| <text text-anchor="middle" x="1116" y="-560" font-family="Times,serif" font-size="10.00">MessageLoopTaskRunner</text> | |
| <text text-anchor="middle" x="1116" y="-549" font-family="Times,serif" font-size="10.00">PostDelayedTask</text> | |
| <text text-anchor="middle" x="1116" y="-538" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="1116" y="-527" font-family="Times,serif" font-size="10.00">of 0.36s (2.70%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N43 --> | |
| <g id="edge64" class="edge"><title>N35->N43</title> | |
| <g id="a_edge64"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper -> base::internal::MessageLoopTaskRunner::PostDelayedTask (0.26s)"> | |
| <path fill="none" stroke="#b2ada1" d="M979.486,-649.965C992.638,-637.521 1008.53,-623.409 1024,-612 1030.86,-606.943 1038.22,-601.96 1045.69,-597.188"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="1047.85,-599.961 1054.47,-591.69 1044.14,-594.027 1047.85,-599.961"/> | |
| </a> | |
| </g> | |
| <g id="a_edge64-label"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper -> base::internal::MessageLoopTaskRunner::PostDelayedTask (0.26s)"> | |
| <text text-anchor="middle" x="1041" y="-615.8" font-family="Times,serif" font-size="14.00"> 0.26s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N10 --> | |
| <g id="edge102" class="edge"><title>N36->N10</title> | |
| <g id="a_edge102"><a xlink:title="content::ResourceLoader::StartRequest ... operator new (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M219.476,-2342.22C182.748,-2324.82 133,-2292.56 133,-2245.5 133,-2245.5 133,-2245.5 133,-1802.5 133,-1666.78 116.37,-1633.57 110,-1498 108.873,-1474.02 109,-1468 109,-1444 109,-1444 109,-1444 109,-799.5 109,-769.329 110.346,-755.927 133,-736 157.885,-714.11 244.244,-698.204 302.442,-689.667"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="303.199,-693.095 312.601,-688.21 302.205,-686.166 303.199,-693.095"/> | |
| </a> | |
| </g> | |
| <g id="a_edge102-label"><a xlink:title="content::ResourceLoader::StartRequest ... operator new (0.06s)"> | |
| <text text-anchor="middle" x="127" y="-1486.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44 --> | |
| <g id="node44" class="node"><title>N44</title> | |
| <g id="a_node44"><a xlink:title="net::URLRequest::Start (0.51s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="947.5,-2266.5 870.5,-2266.5 870.5,-2222.5 947.5,-2222.5 947.5,-2266.5"/> | |
| <text text-anchor="middle" x="909" y="-2256.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="909" y="-2247.1" font-family="Times,serif" font-size="8.00">URLRequest</text> | |
| <text text-anchor="middle" x="909" y="-2238.1" font-family="Times,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="909" y="-2229.1" font-family="Times,serif" font-size="8.00">0 of 0.51s (3.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N44 --> | |
| <g id="edge50" class="edge"><title>N36->N44</title> | |
| <g id="a_edge50"><a xlink:title="content::ResourceLoader::StartRequest ... net::URLRequest::Start (0.51s)"> | |
| <path fill="none" stroke="#b2a590" stroke-dasharray="1,5" d="M285.12,-2336.47C305.974,-2321.62 336.179,-2302.84 366,-2294 451.736,-2268.59 679.319,-2287.49 768,-2276 799.054,-2271.98 833.407,-2264.61 860.429,-2258.12"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="861.519,-2261.46 870.405,-2255.69 859.86,-2254.66 861.519,-2261.46"/> | |
| </a> | |
| </g> | |
| <g id="a_edge50-label"><a xlink:title="content::ResourceLoader::StartRequest ... net::URLRequest::Start (0.51s)"> | |
| <text text-anchor="middle" x="383" y="-2297.8" font-family="Times,serif" font-size="14.00"> 0.51s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N94 --> | |
| <g id="node94" class="node"><title>N94</title> | |
| <g id="a_node94"><a xlink:title="safe_browsing::V4ProtocolManagerUtil::CanonicalizeUrl (0.12s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="277,-2276 161,-2276 161,-2213 277,-2213 277,-2276"/> | |
| <text text-anchor="middle" x="219" y="-2264" font-family="Times,serif" font-size="10.00">safe_browsing</text> | |
| <text text-anchor="middle" x="219" y="-2253" font-family="Times,serif" font-size="10.00">V4ProtocolManagerUtil</text> | |
| <text text-anchor="middle" x="219" y="-2242" font-family="Times,serif" font-size="10.00">CanonicalizeUrl</text> | |
| <text text-anchor="middle" x="219" y="-2231" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="219" y="-2220" font-family="Times,serif" font-size="10.00">of 0.12s (0.9%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N94 --> | |
| <g id="edge84" class="edge"><title>N36->N94</title> | |
| <g id="a_edge84"><a xlink:title="content::ResourceLoader::StartRequest ... safe_browsing::V4ProtocolManagerUtil::CanonicalizeUrl (0.12s)"> | |
| <path fill="none" stroke="#b2b0aa" stroke-dasharray="1,5" d="M236.44,-2336.17C229.886,-2328.31 223.498,-2318.88 220,-2309 217.496,-2301.93 216.253,-2294.12 215.777,-2286.48"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="219.271,-2286.17 215.558,-2276.24 212.273,-2286.32 219.271,-2286.17"/> | |
| </a> | |
| </g> | |
| <g id="a_edge84-label"><a xlink:title="content::ResourceLoader::StartRequest ... safe_browsing::V4ProtocolManagerUtil::CanonicalizeUrl (0.12s)"> | |
| <text text-anchor="middle" x="237" y="-2297.8" font-family="Times,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N32 --> | |
| <g id="edge62" class="edge"><title>N37->N32</title> | |
| <g id="a_edge62"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... mojo::SimpleWatcher::OnHandleReady (0.27s)"> | |
| <path fill="none" stroke="#b2aca0" stroke-dasharray="1,5" d="M366.782,-2905.38C362.152,-2891.92 359.408,-2875.47 366,-2862 368.806,-2856.27 372.772,-2851.07 377.313,-2846.43"/> | |
| <polygon fill="#b2aca0" stroke="#b2aca0" points="379.787,-2848.91 384.839,-2839.6 375.082,-2843.73 379.787,-2848.91"/> | |
| </a> | |
| </g> | |
| <g id="a_edge62-label"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... mojo::SimpleWatcher::OnHandleReady (0.27s)"> | |
| <text text-anchor="middle" x="383" y="-2865.8" font-family="Times,serif" font-size="14.00"> 0.27s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N95 --> | |
| <g id="node95" class="node"><title>N95</title> | |
| <g id="a_node95"><a xlink:title="mojo::edk::ports::Node::AcceptEvent (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="116.5,-187 39.5,-187 39.5,-125 116.5,-125 116.5,-187"/> | |
| <text text-anchor="middle" x="78" y="-176.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="78" y="-167.6" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="78" y="-158.6" font-family="Times,serif" font-size="8.00">ports</text> | |
| <text text-anchor="middle" x="78" y="-149.6" font-family="Times,serif" font-size="8.00">Node</text> | |
| <text text-anchor="middle" x="78" y="-140.6" font-family="Times,serif" font-size="8.00">AcceptEvent</text> | |
| <text text-anchor="middle" x="78" y="-131.6" font-family="Times,serif" font-size="8.00">0 of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N95 --> | |
| <g id="edge78" class="edge"><title>N37->N95</title> | |
| <g id="a_edge78"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... mojo::edk::ports::Node::AcceptEvent (0.16s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M338.699,-2927.37C242.803,-2917.61 9,-2886.81 9,-2818.5 9,-2818.5 9,-2818.5 9,-286 9,-252.716 27.0815,-219.704 44.7324,-195.408"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="47.7018,-197.283 50.9274,-187.191 42.1124,-193.069 47.7018,-197.283"/> | |
| </a> | |
| </g> | |
| <g id="a_edge78-label"><a xlink:title="mojo::edk::NodeChannel::OnChannelMessage ... mojo::edk::ports::Node::AcceptEvent (0.16s)"> | |
| <text text-anchor="middle" x="26" y="-1552.3" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57 --> | |
| <g id="node57" class="node"><title>N57</title> | |
| <g id="a_node57"><a xlink:title="net::SpdyStream::OnDataReceived (1.79s)"> | |
| <polygon fill="#ede4dd" stroke="#b2703a" points="759,-2266.5 679,-2266.5 679,-2222.5 759,-2222.5 759,-2266.5"/> | |
| <text text-anchor="middle" x="719" y="-2256.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="719" y="-2247.1" font-family="Times,serif" font-size="8.00">SpdyStream</text> | |
| <text text-anchor="middle" x="719" y="-2238.1" font-family="Times,serif" font-size="8.00">OnDataReceived</text> | |
| <text text-anchor="middle" x="719" y="-2229.1" font-family="Times,serif" font-size="8.00">0 of 1.79s (13.45%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38->N57 --> | |
| <g id="edge14" class="edge"><title>N38->N57</title> | |
| <g id="a_edge14"><a xlink:title="net::Http2DecoderAdapter::OnDataEnd ... net::SpdyStream::OnDataReceived (1.77s)"> | |
| <path fill="none" stroke="#b2713b" stroke-dasharray="1,5" d="M697.89,-2336.43C701.806,-2319.57 707.355,-2295.66 711.781,-2276.6"/> | |
| <polygon fill="#b2713b" stroke="#b2713b" points="715.191,-2277.39 714.043,-2266.85 708.372,-2275.8 715.191,-2277.39"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="net::Http2DecoderAdapter::OnDataEnd ... net::SpdyStream::OnDataReceived (1.77s)"> | |
| <text text-anchor="middle" x="725" y="-2297.8" font-family="Times,serif" font-size="14.00"> 1.77s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59 --> | |
| <g id="node59" class="node"><title>N59</title> | |
| <g id="a_node59"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL (0.29s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="671.5,-1163.5 576.5,-1163.5 576.5,-1110.5 671.5,-1110.5 671.5,-1163.5"/> | |
| <text text-anchor="middle" x="624" y="-1153.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="624" y="-1144.1" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="624" y="-1135.1" font-family="Times,serif" font-size="8.00">ProxyResolverMojo</text> | |
| <text text-anchor="middle" x="624" y="-1126.1" font-family="Times,serif" font-size="8.00">GetProxyForURL</text> | |
| <text text-anchor="middle" x="624" y="-1117.1" font-family="Times,serif" font-size="8.00">0 of 0.29s (2.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N59 --> | |
| <g id="edge60" class="edge"><title>N39->N59</title> | |
| <g id="a_edge60"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop ... content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL (0.29s)"> | |
| <path fill="none" stroke="#b2ac9f" stroke-dasharray="1,5" d="M539.79,-1221.83C555.099,-1206.59 574.661,-1187.11 591.077,-1170.77"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="593.754,-1173.05 598.371,-1163.51 588.815,-1168.09 593.754,-1173.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge60-label"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop ... content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL (0.29s)"> | |
| <text text-anchor="middle" x="590" y="-1192.8" font-family="Times,serif" font-size="14.00"> 0.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76 --> | |
| <g id="node76" class="node"><title>N76</title> | |
| <g id="a_node76"><a xlink:title="url::SchemeHostPort::SchemeHostPort (0.10s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="558.5,-1171 467.5,-1171 467.5,-1103 558.5,-1103 558.5,-1171"/> | |
| <text text-anchor="middle" x="513" y="-1158.2" font-family="Times,serif" font-size="11.00">url</text> | |
| <text text-anchor="middle" x="513" y="-1146.2" font-family="Times,serif" font-size="11.00">SchemeHostPort</text> | |
| <text text-anchor="middle" x="513" y="-1134.2" font-family="Times,serif" font-size="11.00">SchemeHostPort</text> | |
| <text text-anchor="middle" x="513" y="-1122.2" font-family="Times,serif" font-size="11.00">0.03s (0.23%)</text> | |
| <text text-anchor="middle" x="513" y="-1110.2" font-family="Times,serif" font-size="11.00">of 0.10s (0.75%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39->N76 --> | |
| <g id="edge128" class="edge"><title>N39->N76</title> | |
| <g id="a_edge128"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop ... url::SchemeHostPort::SchemeHostPort (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M513.766,-1221.83C513.656,-1209.84 513.523,-1195.23 513.398,-1181.59"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="516.896,-1181.37 513.305,-1171.4 509.897,-1181.43 516.896,-1181.37"/> | |
| </a> | |
| </g> | |
| <g id="a_edge128-label"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop ... url::SchemeHostPort::SchemeHostPort (0.03s)"> | |
| <text text-anchor="middle" x="531" y="-1192.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40 --> | |
| <g id="node40" class="node"><title>N40</title> | |
| <g id="a_node40"><a xlink:title="__GI___pthread_mutex_lock (0.17s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="1204,-444 1028,-444 1028,-406 1204,-406 1204,-444"/> | |
| <text text-anchor="middle" x="1116" y="-428.8" font-family="Times,serif" font-size="14.00">__GI___pthread_mutex_lock</text> | |
| <text text-anchor="middle" x="1116" y="-413.8" font-family="Times,serif" font-size="14.00">0.17s (1.28%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N23 --> | |
| <g id="edge79" class="edge"><title>N41->N23</title> | |
| <g id="a_edge79"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply -> base::internal::Invoker::RunOnce (0.15s)"> | |
| <path fill="none" stroke="#b2afa8" d="M1205.35,-2790.87C1198.31,-2778.54 1189.63,-2763.35 1181.42,-2748.99"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="1184.39,-2747.13 1176.39,-2740.18 1178.31,-2750.6 1184.39,-2747.13"/> | |
| </a> | |
| </g> | |
| <g id="a_edge79-label"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply -> base::internal::Invoker::RunOnce (0.15s)"> | |
| <text text-anchor="middle" x="1212" y="-2761.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N30 --> | |
| <g id="edge34" class="edge"><title>N41->N30</title> | |
| <g id="a_edge34"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply -> base::internal::Invoker::Run (0.83s)"> | |
| <path fill="none" stroke="#b29a7a" d="M1268.61,-2813.55C1307.73,-2809.25 1362.79,-2798.73 1404,-2773 1414.39,-2766.51 1423.8,-2757.56 1431.89,-2748.16"/> | |
| <polygon fill="#b29a7a" stroke="#b29a7a" points="1434.77,-2750.17 1438.38,-2740.21 1429.35,-2745.75 1434.77,-2750.17"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-label"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply -> base::internal::Invoker::Run (0.83s)"> | |
| <text text-anchor="middle" x="1439" y="-2761.8" font-family="Times,serif" font-size="14.00"> 0.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61 --> | |
| <g id="node61" class="node"><title>N61</title> | |
| <g id="a_node61"><a xlink:title="base::TaskRunner::PostTask (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="1119.5,-822.5 1042.5,-822.5 1042.5,-778.5 1119.5,-778.5 1119.5,-822.5"/> | |
| <text text-anchor="middle" x="1081" y="-812.1" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="1081" y="-803.1" font-family="Times,serif" font-size="8.00">TaskRunner</text> | |
| <text text-anchor="middle" x="1081" y="-794.1" font-family="Times,serif" font-size="8.00">PostTask</text> | |
| <text text-anchor="middle" x="1081" y="-785.1" font-family="Times,serif" font-size="8.00">0 of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41->N61 --> | |
| <g id="edge135" class="edge"><title>N41->N61</title> | |
| <g id="a_edge135"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply -> base::TaskRunner::PostTask (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1247.82,-2790.86C1280.09,-2759.27 1332.07,-2702.34 1357,-2642 1424.76,-2477.99 1404,-2422.96 1404,-2245.5 1404,-2245.5 1404,-2245.5 1404,-1859.5 1404,-1781.94 1405,-1762.56 1405,-1685 1405,-1685 1405,-1685 1405,-1195.5 1405,-1132.72 1347.53,-1139.86 1317,-1085 1284.87,-1027.26 1316.29,-988.997 1267,-945 1240.78,-921.597 1220.1,-945.149 1190,-927 1179.33,-920.567 1133.47,-865.724 1104.74,-830.698"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1107.23,-828.213 1098.19,-822.691 1101.82,-832.646 1107.23,-828.213"/> | |
| </a> | |
| </g> | |
| <g id="a_edge135-label"><a xlink:title="base::(anonymous namespace)::PostTaskAndReplyRelay::RunTaskAndPostReply -> base::TaskRunner::PostTask (0.02s)"> | |
| <text text-anchor="middle" x="1422" y="-1799.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65 --> | |
| <g id="node65" class="node"><title>N65</title> | |
| <g id="a_node65"><a xlink:title="base::internal::TaskTracker::RunNextTask (1.12s)"> | |
| <polygon fill="#ede8e3" stroke="#b28e67" points="689.5,-3306 612.5,-3306 612.5,-3253 689.5,-3253 689.5,-3306"/> | |
| <text text-anchor="middle" x="651" y="-3295.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="651" y="-3286.6" font-family="Times,serif" font-size="8.00">internal</text> | |
| <text text-anchor="middle" x="651" y="-3277.6" font-family="Times,serif" font-size="8.00">TaskTracker</text> | |
| <text text-anchor="middle" x="651" y="-3268.6" font-family="Times,serif" font-size="8.00">RunNextTask</text> | |
| <text text-anchor="middle" x="651" y="-3259.6" font-family="Times,serif" font-size="8.00">0 of 1.12s (8.41%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N65 --> | |
| <g id="edge27" class="edge"><title>N42->N65</title> | |
| <g id="a_edge27"><a xlink:title="base::internal::SchedulerWorker::Thread::ThreadMain -> base::internal::TaskTracker::RunNextTask (1.12s)"> | |
| <path fill="none" stroke="#b28e67" d="M596.296,-3361.83C606.088,-3347.27 617.877,-3329.74 628,-3314.69"/> | |
| <polygon fill="#b28e67" stroke="#b28e67" points="631.063,-3316.41 633.74,-3306.16 625.254,-3312.5 631.063,-3316.41"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-label"><a xlink:title="base::internal::SchedulerWorker::Thread::ThreadMain -> base::internal::TaskTracker::RunNextTask (1.12s)"> | |
| <text text-anchor="middle" x="635" y="-3332.8" font-family="Times,serif" font-size="14.00"> 1.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N86 --> | |
| <g id="node86" class="node"><title>N86</title> | |
| <g id="a_node86"><a xlink:title="base::WaitableEvent::TimedWaitUntil (0.13s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="933.5,-3311 848.5,-3311 848.5,-3248 933.5,-3248 933.5,-3311"/> | |
| <text text-anchor="middle" x="891" y="-3299" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="891" y="-3288" font-family="Times,serif" font-size="10.00">WaitableEvent</text> | |
| <text text-anchor="middle" x="891" y="-3277" font-family="Times,serif" font-size="10.00">TimedWaitUntil</text> | |
| <text text-anchor="middle" x="891" y="-3266" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="891" y="-3255" font-family="Times,serif" font-size="10.00">of 0.13s (0.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N86 --> | |
| <g id="edge83" class="edge"><title>N42->N86</title> | |
| <g id="a_edge83"><a xlink:title="base::internal::SchedulerWorker::Thread::ThreadMain ... base::WaitableEvent::TimedWaitUntil (0.13s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M616.245,-3382.7C668.757,-3369.87 762.913,-3344.49 839,-3311 839.096,-3310.96 839.192,-3310.92 839.288,-3310.87"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="840.753,-3314.05 848.275,-3306.59 837.742,-3307.73 840.753,-3314.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge83-label"><a xlink:title="base::internal::SchedulerWorker::Thread::ThreadMain ... base::WaitableEvent::TimedWaitUntil (0.13s)"> | |
| <text text-anchor="middle" x="808" y="-3332.8" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N3 --> | |
| <g id="edge67" class="edge"><title>N43->N3</title> | |
| <g id="a_edge67"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask ... <unknown> (0.22s)"> | |
| <path fill="none" stroke="#b2aea3" stroke-dasharray="1,5" d="M1177.78,-537.274C1197.3,-531.529 1219,-525.322 1239,-520 1272.13,-511.183 1286.28,-522.161 1314,-502 1364.98,-464.927 1348.63,-430.229 1388,-381 1401.15,-364.554 1405.05,-360.49 1422,-348 1427.84,-343.698 1434.02,-339.499 1440.37,-335.448"/> | |
| <polygon fill="#b2aea3" stroke="#b2aea3" points="1442.45,-338.275 1449.09,-330.022 1438.75,-332.331 1442.45,-338.275"/> | |
| </a> | |
| </g> | |
| <g id="a_edge67-label"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask ... <unknown> (0.22s)"> | |
| <text text-anchor="middle" x="1405" y="-421.3" font-family="Times,serif" font-size="14.00"> 0.22s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N28 --> | |
| <g id="edge122" class="edge"><title>N43->N28</title> | |
| <g id="a_edge122"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask ... __pthread_mutex_unlock_usercnt (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1079.29,-519.814C1066.56,-508.417 1051.76,-496.371 1037,-487 1014.22,-472.534 987.419,-459.88 963.464,-449.903"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="964.671,-446.616 954.09,-446.074 962.024,-453.096 964.671,-446.616"/> | |
| </a> | |
| </g> | |
| <g id="a_edge122-label"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask ... __pthread_mutex_unlock_usercnt (0.03s)"> | |
| <text text-anchor="middle" x="1076" y="-490.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N40 --> | |
| <g id="edge140" class="edge"><title>N43->N40</title> | |
| <g id="a_edge140"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask ... __GI___pthread_mutex_lock (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1116,-519.788C1116,-499.092 1116,-473.517 1116,-454.304"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1119.5,-454.084 1116,-444.084 1112.5,-454.085 1119.5,-454.084"/> | |
| </a> | |
| </g> | |
| <g id="a_edge140-label"><a xlink:title="base::internal::MessageLoopTaskRunner::PostDelayedTask ... __GI___pthread_mutex_lock (0.02s)"> | |
| <text text-anchor="middle" x="1133" y="-490.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N2 --> | |
| <g id="edge68" class="edge"><title>N44->N2</title> | |
| <g id="a_edge68"><a xlink:title="net::URLRequest::Start ... net::HttpCache::Transaction::DoLoop (0.22s)"> | |
| <path fill="none" stroke="#b2aea3" stroke-dasharray="1,5" d="M899.343,-2222.4C890.907,-2202.01 880,-2170.04 880,-2141 880,-2141 880,-2141 880,-1802.5 880,-1772.33 877.312,-1760.36 856,-1739 832.584,-1715.54 797.934,-1702.1 768.725,-1694.49"/> | |
| <polygon fill="#b2aea3" stroke="#b2aea3" points="769.192,-1691 758.647,-1692.04 767.536,-1697.81 769.192,-1691"/> | |
| </a> | |
| </g> | |
| <g id="a_edge68-label"><a xlink:title="net::URLRequest::Start ... net::HttpCache::Transaction::DoLoop (0.22s)"> | |
| <text text-anchor="middle" x="897" y="-1951.8" font-family="Times,serif" font-size="14.00"> 0.22s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58 --> | |
| <g id="node58" class="node"><title>N58</title> | |
| <g id="a_node58"><a xlink:title="content::BrowserThread::PostTask (0.26s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="986.5,-2046 909.5,-2046 909.5,-2002 986.5,-2002 986.5,-2046"/> | |
| <text text-anchor="middle" x="948" y="-2035.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="948" y="-2026.6" font-family="Times,serif" font-size="8.00">BrowserThread</text> | |
| <text text-anchor="middle" x="948" y="-2017.6" font-family="Times,serif" font-size="8.00">PostTask</text> | |
| <text text-anchor="middle" x="948" y="-2008.6" font-family="Times,serif" font-size="8.00">0 of 0.26s (1.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N58 --> | |
| <g id="edge96" class="edge"><title>N44->N58</title> | |
| <g id="a_edge96"><a xlink:title="net::URLRequest::Start ... content::BrowserThread::PostTask (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M912.81,-2222.15C919.731,-2183.38 934.39,-2101.25 942.432,-2056.19"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="945.92,-2056.57 944.231,-2046.11 939.029,-2055.34 945.92,-2056.57"/> | |
| </a> | |
| </g> | |
| <g id="a_edge96-label"><a xlink:title="net::URLRequest::Start ... content::BrowserThread::PostTask (0.08s)"> | |
| <text text-anchor="middle" x="949" y="-2136.3" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N84 --> | |
| <g id="node84" class="node"><title>N84</title> | |
| <g id="a_node84"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.20s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="1326,-822.5 1216,-822.5 1216,-778.5 1326,-778.5 1326,-822.5"/> | |
| <text text-anchor="middle" x="1271" y="-812.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1271" y="-803.1" font-family="Times,serif" font-size="8.00">ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="1271" y="-794.1" font-family="Times,serif" font-size="8.00">~ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="1271" y="-785.1" font-family="Times,serif" font-size="8.00">0 of 0.20s (1.50%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N84 --> | |
| <g id="edge69" class="edge"><title>N45->N84</title> | |
| <g id="a_edge69"><a xlink:title="content::ResourceLoader::~ResourceLoader -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.20s)"> | |
| <path fill="none" stroke="#b2aea5" d="M1271,-882.762C1271,-868.331 1271,-848.999 1271,-832.811"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="1274.5,-832.711 1271,-822.711 1267.5,-832.711 1274.5,-832.711"/> | |
| </a> | |
| </g> | |
| <g id="a_edge69-label"><a xlink:title="content::ResourceLoader::~ResourceLoader -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.20s)"> | |
| <text text-anchor="middle" x="1288" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46 --> | |
| <g id="node46" class="node"><title>N46</title> | |
| <g id="a_node46"><a xlink:title="content::ResourceLoader::CompleteResponseStarted (1.13s)"> | |
| <polygon fill="#ede8e3" stroke="#b28e66" points="1019.5,-1370 918.5,-1370 918.5,-1326 1019.5,-1326 1019.5,-1370"/> | |
| <text text-anchor="middle" x="969" y="-1359.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="969" y="-1350.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="969" y="-1341.6" font-family="Times,serif" font-size="8.00">CompleteResponseStarted</text> | |
| <text text-anchor="middle" x="969" y="-1332.6" font-family="Times,serif" font-size="8.00">0 of 1.13s (8.49%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N8 --> | |
| <g id="edge31" class="edge"><title>N46->N8</title> | |
| <g id="a_edge31"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ResourceLoader::PrepareToReadMore (0.95s)"> | |
| <path fill="none" stroke="#b29572" d="M1012.18,-1325.84C1042.66,-1310.91 1083.66,-1290.82 1115.96,-1275"/> | |
| <polygon fill="#b29572" stroke="#b29572" points="1117.81,-1277.99 1125.25,-1270.45 1114.73,-1271.7 1117.81,-1277.99"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ResourceLoader::PrepareToReadMore (0.95s)"> | |
| <text text-anchor="middle" x="1092" y="-1296.8" font-family="Times,serif" font-size="14.00"> 0.95s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N88 --> | |
| <g id="node88" class="node"><title>N88</title> | |
| <g id="a_node88"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted (0.16s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="834.5,-1270.5 729.5,-1270.5 729.5,-1226.5 834.5,-1226.5 834.5,-1270.5"/> | |
| <text text-anchor="middle" x="782" y="-1260.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="782" y="-1251.1" font-family="Times,serif" font-size="8.00">ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="782" y="-1242.1" font-family="Times,serif" font-size="8.00">OnResponseStarted</text> | |
| <text text-anchor="middle" x="782" y="-1233.1" font-family="Times,serif" font-size="8.00">0 of 0.16s (1.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N88 --> | |
| <g id="edge77" class="edge"><title>N46->N88</title> | |
| <g id="a_edge77"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ThrottlingResourceHandler::OnResponseStarted (0.16s)"> | |
| <path fill="none" stroke="#b2afa7" d="M928.424,-1325.84C899.998,-1311.02 861.842,-1291.13 831.607,-1275.36"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="832.982,-1272.13 822.497,-1270.61 829.746,-1278.34 832.982,-1272.13"/> | |
| </a> | |
| </g> | |
| <g id="a_edge77-label"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ThrottlingResourceHandler::OnResponseStarted (0.16s)"> | |
| <text text-anchor="middle" x="910" y="-1296.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N22 --> | |
| <g id="edge111" class="edge"><title>N47->N22</title> | |
| <g id="a_edge111"><a xlink:title="mojo::Connector::Accept ... syscall (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M801.618,-778.457C778.055,-716.164 715.868,-527.869 762,-381 771.393,-351.095 797.936,-329.03 823.875,-313.918"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="825.58,-316.974 832.622,-309.058 822.181,-310.855 825.58,-316.974"/> | |
| </a> | |
| </g> | |
| <g id="a_edge111-label"><a xlink:title="mojo::Connector::Accept ... syscall (0.05s)"> | |
| <text text-anchor="middle" x="770" y="-553.3" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N28 --> | |
| <g id="edge145" class="edge"><title>N47->N28</title> | |
| <g id="a_edge145"><a xlink:title="mojo::Connector::Accept ... __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M814.983,-778.349C829.816,-715.396 873.713,-529.083 890.944,-455.948"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="894.4,-456.543 893.286,-446.007 887.586,-454.937 894.4,-456.543"/> | |
| </a> | |
| </g> | |
| <g id="a_edge145-label"><a xlink:title="mojo::Connector::Accept ... __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <text text-anchor="middle" x="871" y="-615.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="mojo::edk::NodeController::ForwardEvent (0.22s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea3" points="679.5,-324 596.5,-324 596.5,-250 679.5,-250 679.5,-324"/> | |
| <text text-anchor="middle" x="638" y="-312" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="638" y="-301" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="638" y="-290" font-family="Times,serif" font-size="10.00">NodeController</text> | |
| <text text-anchor="middle" x="638" y="-279" font-family="Times,serif" font-size="10.00">ForwardEvent</text> | |
| <text text-anchor="middle" x="638" y="-268" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="638" y="-257" font-family="Times,serif" font-size="10.00">of 0.22s (1.65%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47->N64 --> | |
| <g id="edge89" class="edge"><title>N47->N64</title> | |
| <g id="a_edge89"><a xlink:title="mojo::Connector::Accept ... mojo::edk::NodeController::ForwardEvent (0.11s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M777.648,-778.457C727.824,-745.917 638,-686.676 638,-682.5 638,-682.5 638,-682.5 638,-424 638,-394.089 638,-360.477 638,-334.152"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="641.5,-334.079 638,-324.079 634.5,-334.079 641.5,-334.079"/> | |
| </a> | |
| </g> | |
| <g id="a_edge89-label"><a xlink:title="mojo::Connector::Accept ... mojo::edk::NodeController::ForwardEvent (0.11s)"> | |
| <text text-anchor="middle" x="655" y="-553.3" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48->N1 --> | |
| <g id="edge5" class="edge"><title>N48->N1</title> | |
| <g id="a_edge5"><a xlink:title="base::MessageLoop::RunTask -> base::debug::TaskAnnotator::RunTask (5.25s)"> | |
| <path fill="none" stroke="#b22b00" stroke-width="2" d="M806,-3019.93C806,-3007.58 806,-2993.05 806,-2979.44"/> | |
| <polygon fill="#b22b00" stroke="#b22b00" stroke-width="2" points="809.5,-2979.26 806,-2969.26 802.5,-2979.26 809.5,-2979.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge5-label"><a xlink:title="base::MessageLoop::RunTask -> base::debug::TaskAnnotator::RunTask (5.25s)"> | |
| <text text-anchor="middle" x="823" y="-2990.8" font-family="Times,serif" font-size="14.00"> 5.25s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48->N23 --> | |
| <g id="edge138" class="edge"><title>N48->N23</title> | |
| <g id="a_edge138"><a xlink:title="base::MessageLoop::RunTask -> base::internal::Invoker::RunOnce (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M850.767,-3049.99C928.312,-3048.1 1082.82,-3039.58 1119,-3002 1152.63,-2967.07 1155.98,-2826.39 1155.21,-2750.35"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1158.71,-2750.02 1155.08,-2740.07 1151.71,-2750.11 1158.71,-2750.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge138-label"><a xlink:title="base::MessageLoop::RunTask -> base::internal::Invoker::RunOnce (0.02s)"> | |
| <text text-anchor="middle" x="1170" y="-2865.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48->N73 --> | |
| <g id="edge139" class="edge"><title>N48->N73</title> | |
| <g id="a_edge139"><a xlink:title="base::MessageLoop::RunTask -> base::internal::WeakReference::is_valid (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M850.685,-3036.56C913.274,-3014.31 1024.48,-2964.14 1070,-2877 1092.72,-2833.51 1092.46,-2693.2 1090.62,-2619.57"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1094.11,-2619.11 1090.34,-2609.21 1087.11,-2619.3 1094.11,-2619.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge139-label"><a xlink:title="base::MessageLoop::RunTask -> base::internal::WeakReference::is_valid (0.02s)"> | |
| <text text-anchor="middle" x="1105" y="-2813.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49 --> | |
| <g id="node49" class="node"><title>N49</title> | |
| <g id="a_node49"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete (1.31s)"> | |
| <polygon fill="#ede7e1" stroke="#b2865a" points="1016.5,-1465 921.5,-1465 921.5,-1421 1016.5,-1421 1016.5,-1465"/> | |
| <text text-anchor="middle" x="969" y="-1454.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="969" y="-1445.6" font-family="Times,serif" font-size="8.00">URLRequestJob</text> | |
| <text text-anchor="middle" x="969" y="-1436.6" font-family="Times,serif" font-size="8.00">NotifyHeadersComplete</text> | |
| <text text-anchor="middle" x="969" y="-1427.6" font-family="Times,serif" font-size="8.00">0 of 1.31s (9.84%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49->N46 --> | |
| <g id="edge26" class="edge"><title>N49->N46</title> | |
| <g id="a_edge26"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete ... content::ResourceLoader::CompleteResponseStarted (1.13s)"> | |
| <path fill="none" stroke="#b28e66" stroke-dasharray="1,5" d="M969,-1420.9C969,-1408.89 969,-1393.62 969,-1380.24"/> | |
| <polygon fill="#b28e66" stroke="#b28e66" points="972.5,-1380.02 969,-1370.02 965.5,-1380.02 972.5,-1380.02"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete ... content::ResourceLoader::CompleteResponseStarted (1.13s)"> | |
| <text text-anchor="middle" x="986" y="-1391.8" font-family="Times,serif" font-size="14.00"> 1.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50 --> | |
| <g id="node50" class="node"><title>N50</title> | |
| <g id="a_node50"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning (0.33s)"> | |
| <polygon fill="#edecea" stroke="#b2ab9c" points="553,-2158 401,-2158 401,-2122 553,-2122 553,-2158"/> | |
| <text text-anchor="middle" x="477" y="-2147.1" font-family="Times,serif" font-size="8.00">ChromeResourceDispatcherHostDelegate</text> | |
| <text text-anchor="middle" x="477" y="-2138.1" font-family="Times,serif" font-size="8.00">RequestBeginning</text> | |
| <text text-anchor="middle" x="477" y="-2129.1" font-family="Times,serif" font-size="8.00">0 of 0.33s (2.48%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N10 --> | |
| <g id="edge132" class="edge"><title>N50->N10</title> | |
| <g id="a_edge132"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... operator new (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M452.397,-2121.98C435.376,-2108.89 413.6,-2089.32 401,-2067 370.354,-2012.72 383.006,-1991.16 371,-1930 334.005,-1741.54 223,-1270.56 223,-1078.5 223,-1078.5 223,-1078.5 223,-799.5 223,-754.754 265.877,-723.283 303.303,-704.335"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="305.204,-707.303 312.671,-699.787 302.147,-701.006 305.204,-707.303"/> | |
| </a> | |
| </g> | |
| <g id="a_edge132-label"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... operator new (0.02s)"> | |
| <text text-anchor="middle" x="281" y="-1391.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N58 --> | |
| <g id="edge86" class="edge"><title>N50->N58</title> | |
| <g id="a_edge86"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... content::BrowserThread::PostTask (0.11s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M545.604,-2121.99C552.802,-2120.51 560.033,-2119.14 567,-2118 650.274,-2104.38 673.913,-2119.54 756,-2100 806.708,-2087.93 861.869,-2065.32 900,-2048.06"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="901.677,-2051.14 909.314,-2043.8 898.765,-2044.78 901.677,-2051.14"/> | |
| </a> | |
| </g> | |
| <g id="a_edge86-label"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... content::BrowserThread::PostTask (0.11s)"> | |
| <text text-anchor="middle" x="822" y="-2088.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N78 --> | |
| <g id="edge134" class="edge"><title>N50->N78</title> | |
| <g id="a_edge134"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... std::__1::basic_string::basic_string (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M467.695,-2121.92C445.523,-2080.13 390.008,-1968.78 371,-1868 353.83,-1776.97 360.124,-1668.26 366.143,-1606.46"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="369.655,-1606.52 367.18,-1596.22 362.691,-1605.82 369.655,-1606.52"/> | |
| </a> | |
| </g> | |
| <g id="a_edge134-label"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... std::__1::basic_string::basic_string (0.02s)"> | |
| <text text-anchor="middle" x="388" y="-1856.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50->N89 --> | |
| <g id="edge133" class="edge"><title>N50->N89</title> | |
| <g id="a_edge133"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... std::__1::__tree::find (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M481.404,-2121.69C484.449,-2109.72 488.672,-2093.12 492.76,-2077.05"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="496.203,-2077.71 495.276,-2067.16 489.419,-2075.98 496.203,-2077.71"/> | |
| </a> | |
| </g> | |
| <g id="a_edge133-label"><a xlink:title="ChromeResourceDispatcherHostDelegate::RequestBeginning ... std::__1::__tree::find (0.02s)"> | |
| <text text-anchor="middle" x="508" y="-2088.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52->N61 --> | |
| <g id="edge91" class="edge"><title>N52->N61</title> | |
| <g id="a_edge91"><a xlink:title="net::URLRequest::Read ... base::TaskRunner::PostTask (0.10s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1103.93,-1114.74C1107.94,-1105.81 1111.99,-1095.14 1114,-1085 1131.43,-996.902 1116.94,-972.453 1109,-883 1107.69,-868.224 1108.34,-864.186 1104,-850 1102.19,-844.062 1099.76,-837.93 1097.16,-832.107"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1100.14,-830.23 1092.7,-822.688 1093.81,-833.224 1100.14,-830.23"/> | |
| </a> | |
| </g> | |
| <g id="a_edge91-label"><a xlink:title="net::URLRequest::Read ... base::TaskRunner::PostTask (0.10s)"> | |
| <text text-anchor="middle" x="1136" y="-948.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79 --> | |
| <g id="node79" class="node"><title>N79</title> | |
| <g id="a_node79"><a xlink:title="net::URLRequestHttpJob::ReadRawData (0.19s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="1099.5,-1037 1016.5,-1037 1016.5,-993 1099.5,-993 1099.5,-1037"/> | |
| <text text-anchor="middle" x="1058" y="-1026.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="1058" y="-1017.6" font-family="Times,serif" font-size="8.00">URLRequestHttpJob</text> | |
| <text text-anchor="middle" x="1058" y="-1008.6" font-family="Times,serif" font-size="8.00">ReadRawData</text> | |
| <text text-anchor="middle" x="1058" y="-999.6" font-family="Times,serif" font-size="8.00">0 of 0.19s (1.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52->N79 --> | |
| <g id="edge71" class="edge"><title>N52->N79</title> | |
| <g id="a_edge71"><a xlink:title="net::URLRequest::Read ... net::URLRequestHttpJob::ReadRawData (0.19s)"> | |
| <path fill="none" stroke="#b2aea5" stroke-dasharray="1,5" d="M1086.82,-1114.82C1081.36,-1096.09 1073.31,-1068.5 1067.11,-1047.24"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="1070.39,-1045.99 1064.23,-1037.37 1063.67,-1047.95 1070.39,-1045.99"/> | |
| </a> | |
| </g> | |
| <g id="a_edge71-label"><a xlink:title="net::URLRequest::Read ... net::URLRequestHttpJob::ReadRawData (0.19s)"> | |
| <text text-anchor="middle" x="1095" y="-1073.8" font-family="Times,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N49 --> | |
| <g id="edge24" class="edge"><title>N53->N49</title> | |
| <g id="a_edge24"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted ... net::URLRequestJob::NotifyHeadersComplete (1.31s)"> | |
| <path fill="none" stroke="#b2865a" stroke-dasharray="1,5" d="M969,-1533.86C969,-1517.27 969,-1493.93 969,-1475.2"/> | |
| <polygon fill="#b2865a" stroke="#b2865a" points="972.5,-1475.06 969,-1465.06 965.5,-1475.06 972.5,-1475.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted ... net::URLRequestJob::NotifyHeadersComplete (1.31s)"> | |
| <text text-anchor="middle" x="986" y="-1486.8" font-family="Times,serif" font-size="14.00"> 1.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54 --> | |
| <g id="node54" class="node"><title>N54</title> | |
| <g id="a_node54"><a xlink:title="mojo::edk::Core::CreateDataPipe (0.36s)"> | |
| <polygon fill="#edece9" stroke="#b2aa9a" points="1454.5,-827 1377.5,-827 1377.5,-774 1454.5,-774 1454.5,-827"/> | |
| <text text-anchor="middle" x="1416" y="-816.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1416" y="-807.6" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="1416" y="-798.6" font-family="Times,serif" font-size="8.00">Core</text> | |
| <text text-anchor="middle" x="1416" y="-789.6" font-family="Times,serif" font-size="8.00">CreateDataPipe</text> | |
| <text text-anchor="middle" x="1416" y="-780.6" font-family="Times,serif" font-size="8.00">0 of 0.36s (2.70%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54->N3 --> | |
| <g id="edge125" class="edge"><title>N54->N3</title> | |
| <g id="a_edge125"><a xlink:title="mojo::edk::Core::CreateDataPipe ... <unknown> (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1417.56,-773.766C1422.98,-689.713 1442.71,-424.284 1480,-348 1481.53,-344.871 1483.26,-341.775 1485.15,-338.737"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1488.12,-340.593 1490.8,-330.344 1482.31,-336.68 1488.12,-340.593"/> | |
| </a> | |
| </g> | |
| <g id="a_edge125-label"><a xlink:title="mojo::edk::Core::CreateDataPipe ... <unknown> (0.03s)"> | |
| <text text-anchor="middle" x="1459" y="-553.3" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54->N10 --> | |
| <g id="edge149" class="edge"><title>N54->N10</title> | |
| <g id="a_edge149"><a xlink:title="mojo::edk::Core::CreateDataPipe ... operator new (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1377.19,-783.793C1363.93,-778.718 1348.93,-773.299 1335,-769 1302.66,-759.018 1291.43,-765.828 1261,-751 1251.33,-746.287 1252.07,-739.788 1242,-736 1168.9,-708.504 968.967,-722.595 891,-718 716.594,-707.721 510.241,-693.346 413.404,-686.47"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="413.485,-682.967 403.262,-685.749 412.989,-689.949 413.485,-682.967"/> | |
| </a> | |
| </g> | |
| <g id="a_edge149-label"><a xlink:title="mojo::edk::Core::CreateDataPipe ... operator new (0.02s)"> | |
| <text text-anchor="middle" x="1278" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54->N22 --> | |
| <g id="edge94" class="edge"><title>N54->N22</title> | |
| <g id="a_edge94"><a xlink:title="mojo::edk::Core::CreateDataPipe ... syscall (0.09s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M1412.97,-773.907C1408.46,-735.07 1399.99,-658.9 1395,-594 1393.18,-570.371 1396.44,-401.172 1384,-381 1338.81,-307.717 1072.31,-292.116 947.908,-288.842"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="947.843,-285.34 937.761,-288.594 947.672,-292.338 947.843,-285.34"/> | |
| </a> | |
| </g> | |
| <g id="a_edge94-label"><a xlink:title="mojo::edk::Core::CreateDataPipe ... syscall (0.09s)"> | |
| <text text-anchor="middle" x="1412" y="-553.3" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54->N28 --> | |
| <g id="edge118" class="edge"><title>N54->N28</title> | |
| <g id="a_edge118"><a xlink:title="mojo::edk::Core::CreateDataPipe ... __pthread_mutex_unlock_usercnt (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" stroke-dasharray="1,5" d="M1400.36,-773.934C1396.14,-766.636 1391.71,-758.6 1388,-751 1358.14,-689.892 1379.89,-650.759 1324,-612 1292.27,-589.993 1271.32,-615.129 1239,-594 1188.16,-560.768 1208.24,-514.325 1154,-487 1099.94,-459.766 1077.84,-483.212 1019,-469 998.235,-463.984 976.063,-456.699 956.446,-449.546"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="957.631,-446.253 947.038,-446.056 955.196,-452.816 957.631,-446.253"/> | |
| </a> | |
| </g> | |
| <g id="a_edge118-label"><a xlink:title="mojo::edk::Core::CreateDataPipe ... __pthread_mutex_unlock_usercnt (0.04s)"> | |
| <text text-anchor="middle" x="1359" y="-615.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55 --> | |
| <g id="node55" class="node"><title>N55</title> | |
| <g id="a_node55"><a xlink:title="base::TaskRunner::PostTaskAndReply (0.29s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="894,-1465 816,-1465 816,-1421 894,-1421 894,-1465"/> | |
| <text text-anchor="middle" x="855" y="-1454.6" font-family="Times,serif" font-size="8.00">base</text> | |
| <text text-anchor="middle" x="855" y="-1445.6" font-family="Times,serif" font-size="8.00">TaskRunner</text> | |
| <text text-anchor="middle" x="855" y="-1436.6" font-family="Times,serif" font-size="8.00">PostTaskAndReply</text> | |
| <text text-anchor="middle" x="855" y="-1427.6" font-family="Times,serif" font-size="8.00">0 of 0.29s (2.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55->N10 --> | |
| <g id="edge107" class="edge"><title>N55->N10</title> | |
| <g id="a_edge107"><a xlink:title="base::TaskRunner::PostTaskAndReply ... operator new (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M834.346,-1420.9C805.631,-1390.67 753.418,-1332.33 720,-1275 702.918,-1245.69 700.292,-1236.89 692,-1204 680.95,-1160.17 695.357,-1145.52 680,-1103 657.511,-1040.74 649.429,-1020.89 599,-978 583.84,-965.107 574.253,-971.485 558,-960 541.566,-948.387 539.269,-942.95 527,-927 466.021,-847.723 468.878,-815.355 408,-736 401.5,-727.527 393.882,-718.854 386.58,-711.025"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="388.865,-708.349 379.436,-703.516 383.793,-713.174 388.865,-708.349"/> | |
| </a> | |
| </g> | |
| <g id="a_edge107-label"><a xlink:title="base::TaskRunner::PostTaskAndReply ... operator new (0.05s)"> | |
| <text text-anchor="middle" x="691" y="-1073.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55->N35 --> | |
| <g id="edge99" class="edge"><title>N55->N35</title> | |
| <g id="a_edge99"><a xlink:title="base::TaskRunner::PostTaskAndReply ... content::BrowserThreadImpl::PostTaskHelper (0.07s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M857.888,-1420.92C862.201,-1389.26 870.512,-1327.53 877,-1275 900.307,-1086.29 902.177,-1038.64 926,-850 931.483,-806.586 938.379,-756.933 943.184,-723.03"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="946.662,-723.432 944.604,-713.039 939.732,-722.447 946.662,-723.432"/> | |
| </a> | |
| </g> | |
| <g id="a_edge99-label"><a xlink:title="base::TaskRunner::PostTaskAndReply ... content::BrowserThreadImpl::PostTaskHelper (0.07s)"> | |
| <text text-anchor="middle" x="918" y="-1073.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56 --> | |
| <g id="node56" class="node"><title>N56</title> | |
| <g id="a_node56"><a xlink:title="mojo::edk::Core::Close (0.25s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="1299.5,-451.5 1222.5,-451.5 1222.5,-398.5 1299.5,-398.5 1299.5,-451.5"/> | |
| <text text-anchor="middle" x="1261" y="-441.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1261" y="-432.1" font-family="Times,serif" font-size="8.00">edk</text> | |
| <text text-anchor="middle" x="1261" y="-423.1" font-family="Times,serif" font-size="8.00">Core</text> | |
| <text text-anchor="middle" x="1261" y="-414.1" font-family="Times,serif" font-size="8.00">Close</text> | |
| <text text-anchor="middle" x="1261" y="-405.1" font-family="Times,serif" font-size="8.00">0 of 0.25s (1.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N3 --> | |
| <g id="edge117" class="edge"><title>N56->N3</title> | |
| <g id="a_edge117"><a xlink:title="mojo::edk::Core::Close ... <unknown> (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" stroke-dasharray="1,5" d="M1263.86,-398.343C1267.04,-381.729 1273.77,-360.868 1288,-348 1308.79,-329.194 1370.21,-314.147 1426.23,-303.826"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="1427.03,-307.238 1436.25,-302.018 1425.78,-300.349 1427.03,-307.238"/> | |
| </a> | |
| </g> | |
| <g id="a_edge117-label"><a xlink:title="mojo::edk::Core::Close ... <unknown> (0.04s)"> | |
| <text text-anchor="middle" x="1305" y="-351.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N22 --> | |
| <g id="edge85" class="edge"><title>N56->N22</title> | |
| <g id="a_edge85"><a xlink:title="mojo::edk::Core::Close ... syscall (0.12s)"> | |
| <path fill="none" stroke="#b2b0aa" stroke-dasharray="1,5" d="M1236.76,-398.434C1229.61,-392.013 1221.43,-385.638 1213,-381 1127.67,-334.053 1016.57,-309.082 947.79,-297.202"/> | |
| <polygon fill="#b2b0aa" stroke="#b2b0aa" points="947.983,-293.685 937.54,-295.475 946.82,-300.588 947.983,-293.685"/> | |
| </a> | |
| </g> | |
| <g id="a_edge85-label"><a xlink:title="mojo::edk::Core::Close ... syscall (0.12s)"> | |
| <text text-anchor="middle" x="1189" y="-351.8" font-family="Times,serif" font-size="14.00"> 0.12s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N64 --> | |
| <g id="edge112" class="edge"><title>N56->N64</title> | |
| <g id="a_edge112"><a xlink:title="mojo::edk::Core::Close ... mojo::edk::NodeController::ForwardEvent (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M1237.68,-398.052C1230.42,-391.467 1221.95,-385.104 1213,-381 1193.04,-371.846 842.616,-333.877 821,-330 776.276,-321.978 725.999,-310.239 689.477,-301.21"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="690.106,-297.76 679.557,-298.741 688.415,-304.553 690.106,-297.76"/> | |
| </a> | |
| </g> | |
| <g id="a_edge112-label"><a xlink:title="mojo::edk::Core::Close ... mojo::edk::NodeController::ForwardEvent (0.05s)"> | |
| <text text-anchor="middle" x="1111" y="-351.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57->N21 --> | |
| <g id="edge16" class="edge"><title>N57->N21</title> | |
| <g id="a_edge16"><a xlink:title="net::SpdyStream::OnDataReceived ... net::SpdyHttpStream::OnClose (1.70s)"> | |
| <path fill="none" stroke="#b27540" stroke-dasharray="1,5" d="M719,-2222.26C719,-2207.83 719,-2188.5 719,-2172.31"/> | |
| <polygon fill="#b27540" stroke="#b27540" points="722.5,-2172.21 719,-2162.21 715.5,-2172.21 722.5,-2172.21"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="net::SpdyStream::OnDataReceived ... net::SpdyHttpStream::OnClose (1.70s)"> | |
| <text text-anchor="middle" x="736" y="-2183.8" font-family="Times,serif" font-size="14.00"> 1.70s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58->N35 --> | |
| <g id="edge63" class="edge"><title>N58->N35</title> | |
| <g id="a_edge63"><a xlink:title="content::BrowserThread::PostTask -> content::BrowserThreadImpl::PostTaskHelper (0.26s)"> | |
| <path fill="none" stroke="#b2ada1" d="M986.686,-2009.37C1026.58,-1992.54 1083,-1959.77 1083,-1909 1083,-1909 1083,-1909 1083,-1489.5 1083,-1435.05 1066.19,-1423.49 1056,-1370 1009.44,-1125.69 968.562,-829.65 954.342,-723.125"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="957.8,-722.573 953.011,-713.122 950.861,-723.496 957.8,-722.573"/> | |
| </a> | |
| </g> | |
| <g id="a_edge63-label"><a xlink:title="content::BrowserThread::PostTask -> content::BrowserThreadImpl::PostTaskHelper (0.26s)"> | |
| <text text-anchor="middle" x="1073" y="-1344.3" font-family="Times,serif" font-size="14.00"> 0.26s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N3 --> | |
| <g id="edge109" class="edge"><title>N59->N3</title> | |
| <g id="a_edge109"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL ... <unknown> (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M671.608,-1132.86C747.849,-1127.07 893.123,-1112.69 936,-1085 983.942,-1054.03 958.41,-1007.94 1007,-978 1035.58,-960.389 1123.86,-965.375 1157,-960 1166.01,-958.538 1310.09,-931.567 1318,-927 1340.63,-913.928 1336.9,-899.694 1357,-883 1378.93,-864.789 1386.21,-862.138 1412,-850 1433.75,-839.765 1448.03,-850.806 1463,-832 1479.85,-810.827 1513.39,-374.666 1518,-348 1518.45,-345.373 1518.95,-342.689 1519.48,-339.984"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="1522.92,-340.662 1521.51,-330.16 1516.06,-339.244 1522.92,-340.662"/> | |
| </a> | |
| </g> | |
| <g id="a_edge109-label"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL ... <unknown> (0.05s)"> | |
| <text text-anchor="middle" x="1497" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N47 --> | |
| <g id="edge141" class="edge"><title>N59->N47</title> | |
| <g id="a_edge141"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL ... mojo::Connector::Accept (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M640.289,-1110.26C645.003,-1102.31 649.961,-1093.43 654,-1085 682.748,-1025 676.432,-1004.09 707,-945 730.39,-899.782 740.8,-890.985 771,-850 775.583,-843.781 780.648,-837.252 785.569,-831.072"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="788.585,-832.907 792.13,-822.923 783.132,-828.517 788.585,-832.907"/> | |
| </a> | |
| </g> | |
| <g id="a_edge141-label"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL ... mojo::Connector::Accept (0.02s)"> | |
| <text text-anchor="middle" x="724" y="-948.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62 --> | |
| <g id="node62" class="node"><title>N62</title> | |
| <g id="a_node62"><a xlink:title="mojo::internal::BindingState::Bind (0.25s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="590.5,-1052 507.5,-1052 507.5,-978 590.5,-978 590.5,-1052"/> | |
| <text text-anchor="middle" x="549" y="-1040" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="549" y="-1029" font-family="Times,serif" font-size="10.00">internal</text> | |
| <text text-anchor="middle" x="549" y="-1018" font-family="Times,serif" font-size="10.00">BindingState</text> | |
| <text text-anchor="middle" x="549" y="-1007" font-family="Times,serif" font-size="10.00">Bind</text> | |
| <text text-anchor="middle" x="549" y="-996" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="549" y="-985" font-family="Times,serif" font-size="10.00">of 0.25s (1.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N62 --> | |
| <g id="edge81" class="edge"><title>N59->N62</title> | |
| <g id="a_edge81"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL -> mojo::internal::BindingState::Bind (0.14s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M585.163,-1110.28C576.729,-1103.03 568.652,-1094.49 563,-1085 558.819,-1077.98 555.867,-1069.93 553.787,-1061.85"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="557.203,-1061.09 551.658,-1052.06 550.363,-1062.58 557.203,-1061.09"/> | |
| </a> | |
| </g> | |
| <g id="a_edge81-label"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL -> mojo::internal::BindingState::Bind (0.14s)"> | |
| <text text-anchor="middle" x="580" y="-1073.8" font-family="Times,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60 --> | |
| <g id="node60" class="node"><title>N60</title> | |
| <g id="a_node60"><a xlink:title="base::internal::CallbackBase::~CallbackBase (0.10s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="1213.5,-718 1124.5,-718 1124.5,-645 1213.5,-645 1213.5,-718"/> | |
| <text text-anchor="middle" x="1169" y="-704.4" font-family="Times,serif" font-size="12.00">base</text> | |
| <text text-anchor="middle" x="1169" y="-691.4" font-family="Times,serif" font-size="12.00">internal</text> | |
| <text text-anchor="middle" x="1169" y="-678.4" font-family="Times,serif" font-size="12.00">CallbackBase</text> | |
| <text text-anchor="middle" x="1169" y="-665.4" font-family="Times,serif" font-size="12.00">~CallbackBase</text> | |
| <text text-anchor="middle" x="1169" y="-652.4" font-family="Times,serif" font-size="12.00">0.10s (0.75%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61->N35 --> | |
| <g id="edge87" class="edge"><title>N61->N35</title> | |
| <g id="a_edge87"><a xlink:title="base::TaskRunner::PostTask ... content::BrowserThreadImpl::PostTaskHelper (0.11s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1045.05,-778.397C1032.77,-770.479 1019.29,-760.968 1008,-751 997.779,-741.979 987.701,-731.194 978.847,-720.88"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="981.443,-718.529 972.332,-713.122 976.082,-723.031 981.443,-718.529"/> | |
| </a> | |
| </g> | |
| <g id="a_edge87-label"><a xlink:title="base::TaskRunner::PostTask ... content::BrowserThreadImpl::PostTaskHelper (0.11s)"> | |
| <text text-anchor="middle" x="1025" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61->N43 --> | |
| <g id="edge98" class="edge"><title>N61->N43</title> | |
| <g id="a_edge98"><a xlink:title="base::TaskRunner::PostTask -> base::internal::MessageLoopTaskRunner::PostDelayedTask (0.07s)"> | |
| <path fill="none" stroke="#b2b1ad" d="M1078.47,-778.266C1075.47,-748.259 1071.92,-691.874 1081,-645 1083.69,-631.109 1088.59,-616.623 1093.88,-603.547"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1097.12,-604.878 1097.78,-594.303 1090.67,-602.156 1097.12,-604.878"/> | |
| </a> | |
| </g> | |
| <g id="a_edge98-label"><a xlink:title="base::TaskRunner::PostTask -> base::internal::MessageLoopTaskRunner::PostDelayedTask (0.07s)"> | |
| <text text-anchor="middle" x="1098" y="-677.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62->N10 --> | |
| <g id="edge113" class="edge"><title>N62->N10</title> | |
| <g id="a_edge113"><a xlink:title="mojo::internal::BindingState::Bind ... operator new (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M511.068,-977.679C496.067,-962.574 479.082,-944.503 465,-927 443.819,-900.673 434.866,-895.813 421,-865 396.845,-811.321 413.412,-790.43 391,-736 387.655,-727.877 383.151,-719.572 378.547,-712.003"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="381.472,-710.081 373.16,-703.511 375.561,-713.831 381.472,-710.081"/> | |
| </a> | |
| </g> | |
| <g id="a_edge113-label"><a xlink:title="mojo::internal::BindingState::Bind ... operator new (0.05s)"> | |
| <text text-anchor="middle" x="438" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N82 --> | |
| <g id="node82" class="node"><title>N82</title> | |
| <g id="a_node82"><a xlink:title="mojo::Connector::WaitToReadMore (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="613.5,-927 536.5,-927 536.5,-883 613.5,-883 613.5,-927"/> | |
| <text text-anchor="middle" x="575" y="-916.6" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="575" y="-907.6" font-family="Times,serif" font-size="8.00">Connector</text> | |
| <text text-anchor="middle" x="575" y="-898.6" font-family="Times,serif" font-size="8.00">WaitToReadMore</text> | |
| <text text-anchor="middle" x="575" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62->N82 --> | |
| <g id="edge76" class="edge"><title>N62->N82</title> | |
| <g id="a_edge76"><a xlink:title="mojo::internal::BindingState::Bind ... mojo::Connector::WaitToReadMore (0.17s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M557.73,-977.737C560.888,-964.619 564.424,-949.931 567.47,-937.278"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="570.957,-937.749 569.895,-927.207 564.151,-936.11 570.957,-937.749"/> | |
| </a> | |
| </g> | |
| <g id="a_edge76-label"><a xlink:title="mojo::internal::BindingState::Bind ... mojo::Connector::WaitToReadMore (0.17s)"> | |
| <text text-anchor="middle" x="583" y="-948.8" font-family="Times,serif" font-size="14.00"> 0.17s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63->N62 --> | |
| <g id="edge88" class="edge"><title>N63->N62</title> | |
| <g id="a_edge88"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler ... mojo::internal::BindingState::Bind (0.11s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M440.143,-2326.78C460.719,-2287.49 486.925,-2219.79 450,-2180 421.956,-2149.78 390.107,-2189.06 359,-2162 325.275,-2132.67 336.27,-2110.5 326,-2067 291.242,-1919.77 224.102,-1529.73 277,-1388 300.245,-1325.72 338.457,-1330.53 375,-1275 421.659,-1204.1 408.081,-1171.65 458,-1103 469.932,-1086.59 485.174,-1070.64 499.758,-1056.98"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="502.304,-1059.4 507.303,-1050.05 497.57,-1054.24 502.304,-1059.4"/> | |
| </a> | |
| </g> | |
| <g id="a_edge88-label"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler ... mojo::internal::BindingState::Bind (0.11s)"> | |
| <text text-anchor="middle" x="286" y="-1680.3" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70 --> | |
| <g id="node70" class="node"><title>N70</title> | |
| <g id="a_node70"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers (0.42s)"> | |
| <polygon fill="#edebe9" stroke="#b2a896" points="445,-2266.5 333,-2266.5 333,-2222.5 445,-2222.5 445,-2266.5"/> | |
| <text text-anchor="middle" x="389" y="-2256.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="389" y="-2247.1" font-family="Times,serif" font-size="8.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="389" y="-2238.1" font-family="Times,serif" font-size="8.00">AddStandardHandlers</text> | |
| <text text-anchor="middle" x="389" y="-2229.1" font-family="Times,serif" font-size="8.00">0 of 0.42s (3.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63->N70 --> | |
| <g id="edge53" class="edge"><title>N63->N70</title> | |
| <g id="a_edge53"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler -> content::ResourceDispatcherHostImpl::AddStandardHandlers (0.42s)"> | |
| <path fill="none" stroke="#b2a896" d="M412.983,-2326.9C408.349,-2311.17 402.716,-2292.05 398.075,-2276.3"/> | |
| <polygon fill="#b2a896" stroke="#b2a896" points="401.371,-2275.1 395.188,-2266.5 394.657,-2277.08 401.371,-2275.1"/> | |
| </a> | |
| </g> | |
| <g id="a_edge53-label"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler -> content::ResourceDispatcherHostImpl::AddStandardHandlers (0.42s)"> | |
| <text text-anchor="middle" x="425" y="-2297.8" font-family="Times,serif" font-size="14.00"> 0.42s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71 --> | |
| <g id="node71" class="node"><title>N71</title> | |
| <g id="a_node71"><a xlink:title="mojo::edk::NodeController::SendPeerEvent (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="679.5,-193 596.5,-193 596.5,-119 679.5,-119 679.5,-193"/> | |
| <text text-anchor="middle" x="638" y="-181" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="638" y="-170" font-family="Times,serif" font-size="10.00">edk</text> | |
| <text text-anchor="middle" x="638" y="-159" font-family="Times,serif" font-size="10.00">NodeController</text> | |
| <text text-anchor="middle" x="638" y="-148" font-family="Times,serif" font-size="10.00">SendPeerEvent</text> | |
| <text text-anchor="middle" x="638" y="-137" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="638" y="-126" font-family="Times,serif" font-size="10.00">of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64->N71 --> | |
| <g id="edge74" class="edge"><title>N64->N71</title> | |
| <g id="a_edge74"><a xlink:title="mojo::edk::NodeController::ForwardEvent -> mojo::edk::NodeController::SendPeerEvent (0.18s)"> | |
| <path fill="none" stroke="#b2afa6" d="M638,-249.723C638,-235.312 638,-218.561 638,-203.292"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="641.5,-203.005 638,-193.005 634.5,-203.005 641.5,-203.005"/> | |
| </a> | |
| </g> | |
| <g id="a_edge74-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent -> mojo::edk::NodeController::SendPeerEvent (0.18s)"> | |
| <text text-anchor="middle" x="655" y="-214.8" font-family="Times,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64->N95 --> | |
| <g id="edge150" class="edge"><title>N64->N95</title> | |
| <g id="a_edge150"><a xlink:title="mojo::edk::NodeController::ForwardEvent -> mojo::edk::ports::Node::AcceptEvent (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M596.299,-269.834C551.575,-253.034 478.18,-227.005 413,-211 312.534,-186.331 192.269,-170.097 126.64,-162.333"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="126.926,-158.843 116.587,-161.16 126.114,-165.796 126.926,-158.843"/> | |
| </a> | |
| </g> | |
| <g id="a_edge150-label"><a xlink:title="mojo::edk::NodeController::ForwardEvent -> mojo::edk::ports::Node::AcceptEvent (0.02s)"> | |
| <text text-anchor="middle" x="481" y="-214.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65->N1 --> | |
| <g id="edge29" class="edge"><title>N65->N1</title> | |
| <g id="a_edge29"><a xlink:title="base::internal::TaskTracker::RunNextTask ... base::debug::TaskAnnotator::RunTask (1.04s)"> | |
| <path fill="none" stroke="#b2926c" stroke-dasharray="1,5" d="M614.693,-3252.92C612.108,-3251.22 609.526,-3249.57 607,-3248 567.295,-3223.32 538.727,-3237.28 515,-3197 497.415,-3167.14 519.019,-3031.99 529,-3020 557.572,-2985.69 679.264,-2957.2 751.504,-2942.91"/> | |
| <polygon fill="#b2926c" stroke="#b2926c" points="752.209,-2946.34 761.354,-2940.99 750.869,-2939.47 752.209,-2946.34"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="base::internal::TaskTracker::RunNextTask ... base::debug::TaskAnnotator::RunTask (1.04s)"> | |
| <text text-anchor="middle" x="529" y="-3104.8" font-family="Times,serif" font-size="14.00"> 1.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66 --> | |
| <g id="node66" class="node"><title>N66</title> | |
| <g id="a_node66"><a xlink:title="mojo::SimpleWatcher::Watch (0.19s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="634.5,-832 551.5,-832 551.5,-769 634.5,-769 634.5,-832"/> | |
| <text text-anchor="middle" x="593" y="-820" font-family="Times,serif" font-size="10.00">mojo</text> | |
| <text text-anchor="middle" x="593" y="-809" font-family="Times,serif" font-size="10.00">SimpleWatcher</text> | |
| <text text-anchor="middle" x="593" y="-798" font-family="Times,serif" font-size="10.00">Watch</text> | |
| <text text-anchor="middle" x="593" y="-787" font-family="Times,serif" font-size="10.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="593" y="-776" font-family="Times,serif" font-size="10.00">of 0.19s (1.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66->N10 --> | |
| <g id="edge104" class="edge"><title>N66->N10</title> | |
| <g id="a_edge104"><a xlink:title="mojo::SimpleWatcher::Watch ... operator new (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M555.289,-768.819C538.098,-755.217 519.496,-741.135 510,-736 479.38,-719.441 442.614,-706.339 412.913,-697.246"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="413.713,-693.833 403.13,-694.317 411.706,-700.539 413.713,-693.833"/> | |
| </a> | |
| </g> | |
| <g id="a_edge104-label"><a xlink:title="mojo::SimpleWatcher::Watch ... operator new (0.06s)"> | |
| <text text-anchor="middle" x="548" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66->N28 --> | |
| <g id="edge148" class="edge"><title>N66->N28</title> | |
| <g id="a_edge148"><a xlink:title="mojo::SimpleWatcher::Watch ... __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M616.697,-768.896C620.712,-763.104 624.657,-756.983 628,-751 655.113,-702.47 682.063,-556.49 724,-520 747.909,-499.196 764.337,-515.524 793,-502 820.189,-489.172 847.595,-469.035 867.587,-452.712"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="869.956,-455.295 875.409,-446.211 865.481,-449.911 869.956,-455.295"/> | |
| </a> | |
| </g> | |
| <g id="a_edge148-label"><a xlink:title="mojo::SimpleWatcher::Watch ... __pthread_mutex_unlock_usercnt (0.02s)"> | |
| <text text-anchor="middle" x="694" y="-615.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67->N55 --> | |
| <g id="edge70" class="edge"><title>N67->N55</title> | |
| <g id="a_edge70"><a xlink:title="disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded ... base::TaskRunner::PostTaskAndReply (0.20s)"> | |
| <path fill="none" stroke="#b2aea5" stroke-dasharray="1,5" d="M855,-1533.86C855,-1517.27 855,-1493.93 855,-1475.2"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="858.5,-1475.06 855,-1465.06 851.5,-1475.06 858.5,-1475.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge70-label"><a xlink:title="disk_cache::SimpleEntryImpl::RunNextOperationIfNeeded ... base::TaskRunner::PostTaskAndReply (0.20s)"> | |
| <text text-anchor="middle" x="872" y="-1486.8" font-family="Times,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68->N25 --> | |
| <g id="edge46" class="edge"><title>N68->N25</title> | |
| <g id="a_edge46"><a xlink:title="tc_malloc -> (anonymous namespace)::do_malloc (0.58s)"> | |
| <path fill="none" stroke="#b2a38b" d="M358,-533.356C358,-518.372 358,-498.068 358,-479.151"/> | |
| <polygon fill="#b2a38b" stroke="#b2a38b" points="361.5,-479.124 358,-469.124 354.5,-479.125 361.5,-479.124"/> | |
| </a> | |
| </g> | |
| <g id="a_edge46-label"><a xlink:title="tc_malloc -> (anonymous namespace)::do_malloc (0.58s)"> | |
| <text text-anchor="middle" x="375" y="-490.8" font-family="Times,serif" font-size="14.00"> 0.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69 --> | |
| <g id="node69" class="node"><title>N69</title> | |
| <g id="a_node69"><a xlink:title="__open64 (0.14s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1075.5,-3646 984.5,-3646 984.5,-3610 1075.5,-3610 1075.5,-3646"/> | |
| <text text-anchor="middle" x="1030" y="-3631.6" font-family="Times,serif" font-size="13.00">__open64</text> | |
| <text text-anchor="middle" x="1030" y="-3617.6" font-family="Times,serif" font-size="13.00">0.14s (1.05%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70->N10 --> | |
| <g id="edge123" class="edge"><title>N70->N10</title> | |
| <g id="a_edge123"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers -> operator new (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" d="M346.354,-2222.4C296.289,-2196.95 220,-2155.76 220,-2141 220,-2141 220,-2141 220,-1620.5 220,-1379.11 185,-1319.89 185,-1078.5 185,-1078.5 185,-1078.5 185,-799.5 185,-741.543 252.446,-710.348 303.113,-695.09"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="304.355,-698.375 312.998,-692.247 302.42,-691.647 304.355,-698.375"/> | |
| </a> | |
| </g> | |
| <g id="a_edge123-label"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers -> operator new (0.03s)"> | |
| <text text-anchor="middle" x="232" y="-1439.3" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70->N50 --> | |
| <g id="edge59" class="edge"><title>N70->N50</title> | |
| <g id="a_edge59"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers -> ChromeResourceDispatcherHostDelegate::RequestBeginning (0.33s)"> | |
| <path fill="none" stroke="#b2ab9c" d="M407.234,-2222.26C421.251,-2205.93 440.655,-2183.33 455.442,-2166.11"/> | |
| <polygon fill="#b2ab9c" stroke="#b2ab9c" points="458.428,-2168.01 462.286,-2158.14 453.117,-2163.45 458.428,-2168.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge59-label"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers -> ChromeResourceDispatcherHostDelegate::RequestBeginning (0.33s)"> | |
| <text text-anchor="middle" x="461" y="-2183.8" font-family="Times,serif" font-size="14.00"> 0.33s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71->N17 --> | |
| <g id="edge119" class="edge"><title>N71->N17</title> | |
| <g id="a_edge119"><a xlink:title="mojo::edk::NodeController::SendPeerEvent ... (anonymous namespace)::do_free_with_callback (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" stroke-dasharray="1,5" d="M679.691,-140.286C732.253,-121.734 823.942,-89.3735 891.834,-65.4115"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="893.406,-68.5684 901.671,-61.9397 891.076,-61.9675 893.406,-68.5684"/> | |
| </a> | |
| </g> | |
| <g id="a_edge119-label"><a xlink:title="mojo::edk::NodeController::SendPeerEvent ... (anonymous namespace)::do_free_with_callback (0.04s)"> | |
| <text text-anchor="middle" x="846" y="-89.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72->N33 --> | |
| <g id="edge8" class="edge"><title>N72->N33</title> | |
| <g id="a_edge8"><a xlink:title="net::SpdySession::DoReadLoop ... net::Http2DecoderAdapter::ProcessInputFrame (2.83s)"> | |
| <path fill="none" stroke="#b24200" stroke-width="2" stroke-dasharray="1,5" d="M693,-2677.99C693,-2657.99 693,-2627.64 693,-2604.79"/> | |
| <polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="696.5,-2604.57 693,-2594.57 689.5,-2604.57 696.5,-2604.57"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="net::SpdySession::DoReadLoop ... net::Http2DecoderAdapter::ProcessInputFrame (2.83s)"> | |
| <text text-anchor="middle" x="710" y="-2630.8" font-family="Times,serif" font-size="14.00"> 2.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74 --> | |
| <g id="node74" class="node"><title>N74</title> | |
| <g id="a_node74"><a xlink:title="g_main_context_check (0.16s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="1678,-447 1560,-447 1560,-403 1678,-403 1678,-447"/> | |
| <text text-anchor="middle" x="1619" y="-434.2" font-family="Times,serif" font-size="11.00">g_main_context_check</text> | |
| <text text-anchor="middle" x="1619" y="-422.2" font-family="Times,serif" font-size="11.00">0.05s (0.38%)</text> | |
| <text text-anchor="middle" x="1619" y="-410.2" font-family="Times,serif" font-size="11.00">of 0.16s (1.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74->N3 --> | |
| <g id="edge93" class="edge"><title>N74->N3</title> | |
| <g id="a_edge93"><a xlink:title="g_main_context_check ... <unknown> (0.09s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M1605.41,-402.75C1594.48,-385.668 1578.67,-360.958 1564.52,-338.84"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="1567.33,-336.731 1558.99,-330.193 1561.43,-340.503 1567.33,-336.731"/> | |
| </a> | |
| </g> | |
| <g id="a_edge93-label"><a xlink:title="g_main_context_check ... <unknown> (0.09s)"> | |
| <text text-anchor="middle" x="1595" y="-351.8" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75 --> | |
| <g id="node75" class="node"><title>N75</title> | |
| <g id="a_node75"><a xlink:title="__xstat64 (0.12s)"> | |
| <polygon fill="#edecec" stroke="#b2b0aa" points="1178,-3646 1094,-3646 1094,-3610 1178,-3610 1178,-3646"/> | |
| <text text-anchor="middle" x="1136" y="-3631.6" font-family="Times,serif" font-size="13.00">__xstat64</text> | |
| <text text-anchor="middle" x="1136" y="-3617.6" font-family="Times,serif" font-size="13.00">0.12s (0.9%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77 --> | |
| <g id="node77" class="node"><title>N77</title> | |
| <g id="a_node77"><a xlink:title="base::internal::LockImpl::Lock (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ad" points="1274,-3665 1196,-3665 1196,-3591 1274,-3591 1274,-3665"/> | |
| <text text-anchor="middle" x="1235" y="-3653" font-family="Times,serif" font-size="10.00">base</text> | |
| <text text-anchor="middle" x="1235" y="-3642" font-family="Times,serif" font-size="10.00">internal</text> | |
| <text text-anchor="middle" x="1235" y="-3631" font-family="Times,serif" font-size="10.00">LockImpl</text> | |
| <text text-anchor="middle" x="1235" y="-3620" font-family="Times,serif" font-size="10.00">Lock</text> | |
| <text text-anchor="middle" x="1235" y="-3609" font-family="Times,serif" font-size="10.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="1235" y="-3598" font-family="Times,serif" font-size="10.00">of 0.08s (0.6%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78->N10 --> | |
| <g id="edge121" class="edge"><title>N78->N10</title> | |
| <g id="a_edge121"><a xlink:title="std::__1::basic_string::basic_string -> operator new (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" d="M363.28,-1515.98C355.482,-1482 343.399,-1431.5 331,-1388 306.591,-1302.37 269,-1286.54 269,-1197.5 269,-1197.5 269,-1197.5 269,-799.5 269,-763.575 295.909,-731.782 320.135,-710.44"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="322.503,-713.021 327.869,-703.886 317.977,-707.681 322.503,-713.021"/> | |
| </a> | |
| </g> | |
| <g id="a_edge121-label"><a xlink:title="std::__1::basic_string::basic_string -> operator new (0.04s)"> | |
| <text text-anchor="middle" x="286" y="-1133.3" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79->N2 --> | |
| <g id="edge97" class="edge"><title>N79->N2</title> | |
| <g id="a_edge97"><a xlink:title="net::URLRequestHttpJob::ReadRawData ... net::HttpCache::Transaction::DoLoop (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1053.07,-1037.17C1046.82,-1067.12 1037.67,-1123.49 1045,-1171 1056.02,-1242.4 1082.98,-1254.6 1094,-1326 1103.5,-1387.54 1063.07,-1552 1019,-1596 951.819,-1663.07 836.799,-1679.26 768.842,-1682.68"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="768.602,-1679.19 758.761,-1683.11 768.901,-1686.18 768.602,-1679.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge97-label"><a xlink:title="net::URLRequestHttpJob::ReadRawData ... net::HttpCache::Transaction::DoLoop (0.08s)"> | |
| <text text-anchor="middle" x="1113" y="-1344.3" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80->N24 --> | |
| <g id="edge39" class="edge"><title>N80->N24</title> | |
| <g id="a_edge39"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::SpdyHttpStream::DoResponseCallback (0.76s)"> | |
| <path fill="none" stroke="#b29c7f" d="M714,-2001.82C714,-1984.55 714,-1959.89 714,-1940.33"/> | |
| <polygon fill="#b29c7f" stroke="#b29c7f" points="717.5,-1940.06 714,-1930.06 710.5,-1940.06 717.5,-1940.06"/> | |
| </a> | |
| </g> | |
| <g id="a_edge39-label"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::SpdyHttpStream::DoResponseCallback (0.76s)"> | |
| <text text-anchor="middle" x="731" y="-1951.8" font-family="Times,serif" font-size="14.00"> 0.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N81->N10 --> | |
| <g id="edge147" class="edge"><title>N81->N10</title> | |
| <g id="a_edge147"><a xlink:title="mojo::Message::Message ... operator new (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M676.35,-782.513C665.615,-777.963 653.91,-773.157 643,-769 619.753,-760.142 612.372,-761.88 590,-751 579.025,-745.663 578.172,-740.912 567,-736 517.006,-714.018 456.16,-699.721 413.043,-691.485"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="413.502,-688.01 403.03,-689.621 412.22,-694.892 413.502,-688.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge147-label"><a xlink:title="mojo::Message::Message ... operator new (0.02s)"> | |
| <text text-anchor="middle" x="607" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N82->N10 --> | |
| <g id="edge146" class="edge"><title>N82->N10</title> | |
| <g id="a_edge146"><a xlink:title="mojo::Connector::WaitToReadMore -> operator new (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M551.718,-882.987C537.716,-869.448 520.286,-850.896 508,-832 482.709,-793.105 498.931,-769.658 467,-736 452.101,-720.295 431.614,-708.58 412.421,-700.183"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="413.711,-696.928 403.133,-696.323 411.025,-703.393 413.711,-696.928"/> | |
| </a> | |
| </g> | |
| <g id="a_edge146-label"><a xlink:title="mojo::Connector::WaitToReadMore -> operator new (0.02s)"> | |
| <text text-anchor="middle" x="525" y="-796.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N82->N66 --> | |
| <g id="edge73" class="edge"><title>N82->N66</title> | |
| <g id="a_edge73"><a xlink:title="mojo::Connector::WaitToReadMore ... mojo::SimpleWatcher::Watch (0.18s)"> | |
| <path fill="none" stroke="#b2afa6" stroke-dasharray="1,5" d="M578.73,-882.762C580.801,-870.966 583.448,-855.894 585.898,-841.942"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="589.354,-842.498 587.636,-832.043 582.459,-841.287 589.354,-842.498"/> | |
| </a> | |
| </g> | |
| <g id="a_edge73-label"><a xlink:title="mojo::Connector::WaitToReadMore ... mojo::SimpleWatcher::Watch (0.18s)"> | |
| <text text-anchor="middle" x="601" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N83 --> | |
| <g id="node83" class="node"><title>N83</title> | |
| <g id="a_node83"><a xlink:title="mojo::internal::MultiplexRouter::CloseMessagePipe (0.15s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="1325.5,-583.5 1248.5,-583.5 1248.5,-530.5 1325.5,-530.5 1325.5,-583.5"/> | |
| <text text-anchor="middle" x="1287" y="-573.1" font-family="Times,serif" font-size="8.00">mojo</text> | |
| <text text-anchor="middle" x="1287" y="-564.1" font-family="Times,serif" font-size="8.00">internal</text> | |
| <text text-anchor="middle" x="1287" y="-555.1" font-family="Times,serif" font-size="8.00">MultiplexRouter</text> | |
| <text text-anchor="middle" x="1287" y="-546.1" font-family="Times,serif" font-size="8.00">CloseMessagePipe</text> | |
| <text text-anchor="middle" x="1287" y="-537.1" font-family="Times,serif" font-size="8.00">0 of 0.15s (1.13%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N83->N56 --> | |
| <g id="edge105" class="edge"><title>N83->N56</title> | |
| <g id="a_edge105"><a xlink:title="mojo::internal::MultiplexRouter::CloseMessagePipe ... mojo::edk::Core::Close (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1281.86,-530.316C1277.93,-510.641 1272.45,-483.268 1268.1,-461.499"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1271.52,-460.75 1266.13,-451.63 1264.66,-462.123 1271.52,-460.75"/> | |
| </a> | |
| </g> | |
| <g id="a_edge105-label"><a xlink:title="mojo::internal::MultiplexRouter::CloseMessagePipe ... mojo::edk::Core::Close (0.06s)"> | |
| <text text-anchor="middle" x="1293" y="-490.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N84->N60 --> | |
| <g id="edge144" class="edge"><title>N84->N60</title> | |
| <g id="a_edge144"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler ... base::internal::CallbackBase::~CallbackBase (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1215.75,-786.444C1197.35,-779.181 1178.8,-768.023 1168,-751 1163.7,-744.221 1161.74,-736.255 1161.18,-728.198"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1164.68,-728.018 1161.15,-718.028 1157.68,-728.038 1164.68,-728.018"/> | |
| </a> | |
| </g> | |
| <g id="a_edge144-label"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler ... base::internal::CallbackBase::~CallbackBase (0.02s)"> | |
| <text text-anchor="middle" x="1185" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N93 --> | |
| <g id="node93" class="node"><title>N93</title> | |
| <g id="a_node93"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="1336,-703.5 1232,-703.5 1232,-659.5 1336,-659.5 1336,-703.5"/> | |
| <text text-anchor="middle" x="1284" y="-693.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1284" y="-684.1" font-family="Times,serif" font-size="8.00">LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="1284" y="-675.1" font-family="Times,serif" font-size="8.00">~LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="1284" y="-666.1" font-family="Times,serif" font-size="8.00">0 of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N84->N93 --> | |
| <g id="edge72" class="edge"><title>N84->N93</title> | |
| <g id="a_edge72"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler -> content::LayeredResourceHandler::~LayeredResourceHandler (0.18s)"> | |
| <path fill="none" stroke="#b2afa6" d="M1286.42,-778.362C1291.47,-770.224 1296.43,-760.579 1299,-751 1302.27,-738.813 1300.43,-725.266 1297.09,-713.458"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="1300.3,-712.016 1293.85,-703.607 1293.64,-714.2 1300.3,-712.016"/> | |
| </a> | |
| </g> | |
| <g id="a_edge72-label"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler -> content::LayeredResourceHandler::~LayeredResourceHandler (0.18s)"> | |
| <text text-anchor="middle" x="1318" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N87->N19 --> | |
| <g id="edge21" class="edge"><title>N87->N19</title> | |
| <g id="a_edge21"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept ... content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest (1.50s)"> | |
| <path fill="none" stroke="#b27e4d" stroke-dasharray="1,5" d="M422,-2545.75C422,-2530.71 422,-2511.61 422,-2495.66"/> | |
| <polygon fill="#b27e4d" stroke="#b27e4d" points="425.5,-2495.21 422,-2485.21 418.5,-2495.21 425.5,-2495.21"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept ... content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest (1.50s)"> | |
| <text text-anchor="middle" x="439" y="-2506.8" font-family="Times,serif" font-size="14.00"> 1.50s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N88->N47 --> | |
| <g id="edge110" class="edge"><title>N88->N47</title> | |
| <g id="a_edge110"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted ... mojo::Connector::Accept (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M784.64,-1226.43C786.456,-1211.09 788.756,-1189.79 790,-1171 799.429,-1028.59 781.131,-991.6 799,-850 799.716,-844.325 800.798,-838.339 802.009,-832.583"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="805.477,-833.115 804.276,-822.588 798.651,-831.566 805.477,-833.115"/> | |
| </a> | |
| </g> | |
| <g id="a_edge110-label"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted ... mojo::Connector::Accept (0.05s)"> | |
| <text text-anchor="middle" x="810" y="-1011.3" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N88->N82 --> | |
| <g id="edge103" class="edge"><title>N88->N82</title> | |
| <g id="a_edge103"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted ... mojo::Connector::WaitToReadMore (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M777.662,-1226.07C764.222,-1160.5 722.975,-965.797 703,-945 682.452,-923.607 650.558,-913.852 623.748,-909.448"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="624.153,-905.97 613.756,-908.009 623.155,-912.899 624.153,-905.97"/> | |
| </a> | |
| </g> | |
| <g id="a_edge103-label"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted ... mojo::Connector::WaitToReadMore (0.06s)"> | |
| <text text-anchor="middle" x="764" y="-1073.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N97 --> | |
| <g id="node97" class="node"><title>N97</title> | |
| <g id="a_node97"><a xlink:title="ui::EventProcessor::OnEventFromSource (0.56s)"> | |
| <polygon fill="#edebe8" stroke="#b2a38c" points="623.5,-3073.5 538.5,-3073.5 538.5,-3029.5 623.5,-3029.5 623.5,-3073.5"/> | |
| <text text-anchor="middle" x="581" y="-3063.1" font-family="Times,serif" font-size="8.00">ui</text> | |
| <text text-anchor="middle" x="581" y="-3054.1" font-family="Times,serif" font-size="8.00">EventProcessor</text> | |
| <text text-anchor="middle" x="581" y="-3045.1" font-family="Times,serif" font-size="8.00">OnEventFromSource</text> | |
| <text text-anchor="middle" x="581" y="-3036.1" font-family="Times,serif" font-size="8.00">0 of 0.56s (4.21%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N90->N97 --> | |
| <g id="edge48" class="edge"><title>N90->N97</title> | |
| <g id="a_edge48"><a xlink:title="views::DesktopWindowTreeHostX11::DispatchEvent ... ui::EventProcessor::OnEventFromSource (0.56s)"> | |
| <path fill="none" stroke="#b2a38c" stroke-dasharray="1,5" d="M581,-3143.43C581,-3126.65 581,-3102.88 581,-3083.86"/> | |
| <polygon fill="#b2a38c" stroke="#b2a38c" points="584.5,-3083.85 581,-3073.85 577.5,-3083.85 584.5,-3083.85"/> | |
| </a> | |
| </g> | |
| <g id="a_edge48-label"><a xlink:title="views::DesktopWindowTreeHostX11::DispatchEvent ... ui::EventProcessor::OnEventFromSource (0.56s)"> | |
| <text text-anchor="middle" x="598" y="-3104.8" font-family="Times,serif" font-size="14.00"> 0.56s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N91->N48 --> | |
| <g id="edge136" class="edge"><title>N91->N48</title> | |
| <g id="a_edge136"><a xlink:title="base::MessageLoop::DoDelayedWork -> base::MessageLoop::RunTask (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M728.965,-3133.9C741.585,-3120.56 756.511,-3104.79 769.849,-3090.7"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="772.738,-3092.74 777.07,-3083.07 767.654,-3087.92 772.738,-3092.74"/> | |
| </a> | |
| </g> | |
| <g id="a_edge136-label"><a xlink:title="base::MessageLoop::DoDelayedWork -> base::MessageLoop::RunTask (0.02s)"> | |
| <text text-anchor="middle" x="777" y="-3104.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N92->N47 --> | |
| <g id="edge82" class="edge"><title>N92->N47</title> | |
| <g id="a_edge82"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... mojo::Connector::Accept (0.14s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M1000.56,-882.886C958.807,-865.053 899.373,-839.67 858.023,-822.01"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="859.277,-818.74 848.706,-818.031 856.528,-825.177 859.277,-818.74"/> | |
| </a> | |
| </g> | |
| <g id="a_edge82-label"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... mojo::Connector::Accept (0.14s)"> | |
| <text text-anchor="middle" x="976" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N92->N61 --> | |
| <g id="edge142" class="edge"><title>N92->N61</title> | |
| <g id="a_edge142"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... base::TaskRunner::PostTask (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1056.42,-882.762C1060.83,-868.194 1066.75,-848.631 1071.67,-832.35"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1075.04,-833.296 1074.59,-822.711 1068.34,-831.269 1075.04,-833.296"/> | |
| </a> | |
| </g> | |
| <g id="a_edge142-label"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... base::TaskRunner::PostTask (0.02s)"> | |
| <text text-anchor="middle" x="1083" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N92->N81 --> | |
| <g id="edge143" class="edge"><title>N92->N81</title> | |
| <g id="a_edge143"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... mojo::Message::Message (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M999.951,-896.707C941.166,-886.971 841.572,-866.784 762,-832 759.014,-830.695 756.005,-829.209 753.03,-827.612"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="754.674,-824.52 744.262,-822.558 751.178,-830.584 754.674,-824.52"/> | |
| </a> | |
| </g> | |
| <g id="a_edge143-label"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... mojo::Message::Message (0.02s)"> | |
| <text text-anchor="middle" x="872" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N93->N83 --> | |
| <g id="edge90" class="edge"><title>N93->N83</title> | |
| <g id="a_edge90"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler ... mojo::internal::MultiplexRouter::CloseMessagePipe (0.10s)"> | |
| <path fill="none" stroke="#b2b0ab" stroke-dasharray="1,5" d="M1284.52,-659.441C1284.96,-641.453 1285.6,-615.182 1286.12,-593.883"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1289.62,-593.967 1286.37,-583.884 1282.62,-593.796 1289.62,-593.967"/> | |
| </a> | |
| </g> | |
| <g id="a_edge90-label"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler ... mojo::internal::MultiplexRouter::CloseMessagePipe (0.10s)"> | |
| <text text-anchor="middle" x="1303" y="-615.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N93->N84 --> | |
| <g id="edge75" class="edge"><title>N93->N84</title> | |
| <g id="a_edge75"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.17s)"> | |
| <path fill="none" stroke="#b2afa7" d="M1247.48,-703.684C1230.29,-714.497 1212.57,-727.192 1208,-736 1200.95,-749.583 1208.66,-762.119 1220.82,-772.4"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="1218.79,-775.25 1228.87,-778.5 1223.01,-769.671 1218.79,-775.25"/> | |
| </a> | |
| </g> | |
| <g id="a_edge75-label"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.17s)"> | |
| <text text-anchor="middle" x="1225" y="-739.8" font-family="Times,serif" font-size="14.00"> 0.17s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N95->N64 --> | |
| <g id="edge101" class="edge"><title>N95->N64</title> | |
| <g id="a_edge101"><a xlink:title="mojo::edk::ports::Node::AcceptEvent ... mojo::edk::NodeController::ForwardEvent (0.07s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M116.536,-165.877C214.866,-188.528 475.144,-248.485 586.393,-274.112"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="585.836,-277.575 596.366,-276.409 587.407,-270.754 585.836,-277.575"/> | |
| </a> | |
| </g> | |
| <g id="a_edge101-label"><a xlink:title="mojo::edk::ports::Node::AcceptEvent ... mojo::edk::NodeController::ForwardEvent (0.07s)"> | |
| <text text-anchor="middle" x="392" y="-214.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N96->N3 --> | |
| <g id="edge49" class="edge"><title>N96->N3</title> | |
| <g id="a_edge49"><a xlink:title="disk_cache::SimpleSynchronousEntry::InitializeForCreate ... <unknown> (0.52s)"> | |
| <path fill="none" stroke="#b2a58f" stroke-dasharray="1,5" d="M1489.37,-2550.29C1508.17,-2530.08 1532,-2497.8 1532,-2464 1532,-2464 1532,-2464 1532,-424 1532,-396.4 1532,-365.649 1532,-340.38"/> | |
| <polygon fill="#b2a58f" stroke="#b2a58f" points="1535.5,-340.27 1532,-330.27 1528.5,-340.27 1535.5,-340.27"/> | |
| </a> | |
| </g> | |
| <g id="a_edge49-label"><a xlink:title="disk_cache::SimpleSynchronousEntry::InitializeForCreate ... <unknown> (0.52s)"> | |
| <text text-anchor="middle" x="1549" y="-1439.3" font-family="Times,serif" font-size="14.00"> 0.52s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N97->N29 --> | |
| <g id="edge52" class="edge"><title>N97->N29</title> | |
| <g id="a_edge52"><a xlink:title="ui::EventProcessor::OnEventFromSource ... ui::EventDispatcher::ProcessEvent (0.43s)"> | |
| <path fill="none" stroke="#b2a895" stroke-dasharray="1,5" d="M623.584,-3034.24C661.17,-3020.33 717.655,-3000.46 768,-2987 807.828,-2976.35 821.345,-2985.79 859,-2969 864.363,-2966.61 869.692,-2963.52 874.742,-2960.17"/> | |
| <polygon fill="#b2a895" stroke="#b2a895" points="876.815,-2962.99 882.933,-2954.34 872.756,-2957.29 876.815,-2962.99"/> | |
| </a> | |
| </g> | |
| <g id="a_edge52-label"><a xlink:title="ui::EventProcessor::OnEventFromSource ... ui::EventDispatcher::ProcessEvent (0.43s)"> | |
| <text text-anchor="middle" x="785" y="-2990.8" font-family="Times,serif" font-size="14.00"> 0.43s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N98->N26 --> | |
| <g id="edge17" class="edge"><title>N98->N26</title> | |
| <g id="a_edge17"><a xlink:title="event_base_loop -> base::MessagePumpLibevent::OnLibeventNotification (1.63s)"> | |
| <path fill="none" stroke="#b27845" d="M421,-3147.49C421,-3130.71 421,-3104.66 421,-3084.08"/> | |
| <polygon fill="#b27845" stroke="#b27845" points="424.5,-3083.89 421,-3073.89 417.5,-3083.89 424.5,-3083.89"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="event_base_loop -> base::MessagePumpLibevent::OnLibeventNotification (1.63s)"> | |
| <text text-anchor="middle" x="438" y="-3104.8" font-family="Times,serif" font-size="14.00"> 1.63s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N99->N54 --> | |
| <g id="edge57" class="edge"><title>N99->N54</title> | |
| <g id="a_edge57"><a xlink:title="content::LayeredResourceHandler::OnWillRead ... mojo::edk::Core::CreateDataPipe (0.36s)"> | |
| <path fill="none" stroke="#b2aa9a" stroke-dasharray="1,5" d="M1416,-882.762C1416,-869.612 1416,-852.393 1416,-837.191"/> | |
| <polygon fill="#b2aa9a" stroke="#b2aa9a" points="1419.5,-837.064 1416,-827.064 1412.5,-837.064 1419.5,-837.064"/> | |
| </a> | |
| </g> | |
| <g id="a_edge57-label"><a xlink:title="content::LayeredResourceHandler::OnWillRead ... mojo::edk::Core::CreateDataPipe (0.36s)"> | |
| <text text-anchor="middle" x="1433" y="-853.8" font-family="Times,serif" font-size="14.00"> 0.36s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N100->N24 --> | |
| <g id="edge35" class="edge"><title>N100->N24</title> | |
| <g id="a_edge35"><a xlink:title="net::SpdyHttpStream::OnHeadersReceived -> net::SpdyHttpStream::DoResponseCallback (0.83s)"> | |
| <path fill="none" stroke="#b29a7a" d="M589,-2336.44C589,-2313.93 589,-2277.19 589,-2245.5 589,-2245.5 589,-2245.5 589,-2023 589,-1981.07 627.864,-1950.46 662.251,-1931.58"/> | |
| <polygon fill="#b29a7a" stroke="#b29a7a" points="664.114,-1934.55 671.332,-1926.8 660.853,-1928.36 664.114,-1934.55"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="net::SpdyHttpStream::OnHeadersReceived -> net::SpdyHttpStream::DoResponseCallback (0.83s)"> | |
| <text text-anchor="middle" x="606" y="-2136.3" font-family="Times,serif" font-size="14.00"> 0.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| </g> | |
| </g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment