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 3393)"> | |
| <title>chrome</title> | |
| <polygon fill="white" stroke="none" points="-4,4 -4,-3393 2390.5,-3393 2390.5,4 -4,4"/> | |
| <g id="clust1" class="cluster"><title>cluster_L</title> | |
| <polygon fill="none" stroke="black" points="198.5,-3231 198.5,-3381 618.5,-3381 618.5,-3231 198.5,-3231"/> | |
| </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="610.5,-3373 206.5,-3373 206.5,-3239 610.5,-3239 610.5,-3373"/> | |
| <text text-anchor="start" x="214.5" y="-3356.2" font-family="Times,serif" font-size="16.00">File: chrome</text> | |
| <text text-anchor="start" x="214.5" y="-3338.2" font-family="Times,serif" font-size="16.00">Type: cpu</text> | |
| <text text-anchor="start" x="214.5" y="-3320.2" font-family="Times,serif" font-size="16.00">Active filters:</text> | |
| <text text-anchor="start" x="214.5" y="-3302.2" font-family="Times,serif" font-size="16.00">   show=content|net</text> | |
| <text text-anchor="start" x="214.5" y="-3284.2" font-family="Times,serif" font-size="16.00">Showing nodes accounting for 4.78s, 35.91% of 13.31s total</text> | |
| <text text-anchor="start" x="214.5" y="-3266.2" font-family="Times,serif" font-size="16.00">Dropped 213 nodes (cum <= 0.07s)</text> | |
| <text text-anchor="start" x="214.5" y="-3248.2" font-family="Times,serif" font-size="16.00">Showing top 80 nodes out of 201</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1 --> | |
| <g id="node1" class="node"><title>N1</title> | |
| <g id="a_node1"><a xlink:title="content::BrowserThreadImpl::IOThreadRun (6.42s)"> | |
| <polygon fill="#eddad5" stroke="#b22300" points="776.5,-3188 564.5,-3188 564.5,-3050 776.5,-3050 776.5,-3188"/> | |
| <text text-anchor="middle" x="670.5" y="-3164.8" font-family="Times,serif" font-size="24.00">content</text> | |
| <text text-anchor="middle" x="670.5" y="-3138.8" font-family="Times,serif" font-size="24.00">BrowserThreadImpl</text> | |
| <text text-anchor="middle" x="670.5" y="-3112.8" font-family="Times,serif" font-size="24.00">IOThreadRun</text> | |
| <text text-anchor="middle" x="670.5" y="-3086.8" font-family="Times,serif" font-size="24.00">0.78s (5.86%)</text> | |
| <text text-anchor="middle" x="670.5" y="-3060.8" font-family="Times,serif" font-size="24.00">of 6.42s (48.23%)</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="720.5,-1665 618.5,-1665 618.5,-1579 720.5,-1579 720.5,-1665"/> | |
| <text text-anchor="middle" x="669.5" y="-1651.4" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="669.5" y="-1638.4" font-family="Times,serif" font-size="12.00">HttpCache</text> | |
| <text text-anchor="middle" x="669.5" y="-1625.4" font-family="Times,serif" font-size="12.00">Transaction</text> | |
| <text text-anchor="middle" x="669.5" y="-1612.4" font-family="Times,serif" font-size="12.00">DoLoop</text> | |
| <text text-anchor="middle" x="669.5" y="-1599.4" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="669.5" y="-1586.4" font-family="Times,serif" font-size="12.00">of 3.06s (22.99%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N2 --> | |
| <g id="edge35" class="edge"><title>N1->N2</title> | |
| <g id="a_edge35"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> net::HttpCache::Transaction::DoLoop (0.40s)"> | |
| <path fill="none" stroke="#b2a997" d="M564.311,-3083.26C505.232,-3056.54 443.5,-3012.87 443.5,-2947 443.5,-2947 443.5,-2947 443.5,-1746.5 443.5,-1671.12 541.521,-1641.46 608.455,-1630"/> | |
| <polygon fill="#b2a997" stroke="#b2a997" points="609.187,-1633.42 618.499,-1628.37 608.069,-1626.51 609.187,-1633.42"/> | |
| </a> | |
| </g> | |
| <g id="a_edge35-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> net::HttpCache::Transaction::DoLoop (0.40s)"> | |
| <text text-anchor="middle" x="460.5" y="-2278.3" font-family="Times,serif" font-size="14.00"> 0.40s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5 --> | |
| <g id="node5" class="node"><title>N5</title> | |
| <g id="a_node5"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete (2.51s)"> | |
| <polygon fill="#eddfd6" stroke="#b24c0a" points="729,-1779 610,-1779 610,-1716 729,-1716 729,-1779"/> | |
| <text text-anchor="middle" x="669.5" y="-1767" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="669.5" y="-1756" font-family="Times,serif" font-size="10.00">HttpNetworkTransaction</text> | |
| <text text-anchor="middle" x="669.5" y="-1745" font-family="Times,serif" font-size="10.00">OnIOComplete</text> | |
| <text text-anchor="middle" x="669.5" y="-1734" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="669.5" y="-1723" font-family="Times,serif" font-size="10.00">of 2.51s (18.86%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N5 --> | |
| <g id="edge88" class="edge"><title>N1->N5</title> | |
| <g id="a_edge88"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::HttpNetworkTransaction::OnIOComplete (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" stroke-dasharray="1,5" d="M714.439,-3049.64C729.899,-3019.41 743.5,-2982.67 743.5,-2947 743.5,-2947 743.5,-2947 743.5,-2618.5 743.5,-2561.21 734.272,-2540.86 762.5,-2491 780.08,-2459.95 806.794,-2470.98 824.5,-2440 898.287,-2310.9 876.5,-2258.2 876.5,-2109.5 876.5,-2109.5 876.5,-2109.5 876.5,-1851 876.5,-1788.36 799.423,-1764 739.335,-1754.53"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="739.497,-1751.01 729.095,-1753.03 738.483,-1757.94 739.497,-1751.01"/> | |
| </a> | |
| </g> | |
| <g id="a_edge88-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::HttpNetworkTransaction::OnIOComplete (0.05s)"> | |
| <text text-anchor="middle" x="887.5" y="-2337.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7 --> | |
| <g id="node7" class="node"><title>N7</title> | |
| <g id="a_node7"><a xlink:title="net::HttpNetworkTransaction::DoLoop (0.74s)"> | |
| <polygon fill="#edeae6" stroke="#b29d80" points="1123.5,-1520.5 971.5,-1520.5 971.5,-1442.5 1123.5,-1442.5 1123.5,-1520.5"/> | |
| <text text-anchor="middle" x="1047.5" y="-1506.1" font-family="Times,serif" font-size="13.00">net</text> | |
| <text text-anchor="middle" x="1047.5" y="-1492.1" font-family="Times,serif" font-size="13.00">HttpNetworkTransaction</text> | |
| <text text-anchor="middle" x="1047.5" y="-1478.1" font-family="Times,serif" font-size="13.00">DoLoop</text> | |
| <text text-anchor="middle" x="1047.5" y="-1464.1" font-family="Times,serif" font-size="13.00">0.05s (0.38%)</text> | |
| <text text-anchor="middle" x="1047.5" y="-1450.1" font-family="Times,serif" font-size="13.00">of 0.74s (5.56%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N7 --> | |
| <g id="edge46" class="edge"><title>N1->N7</title> | |
| <g id="a_edge46"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::HttpNetworkTransaction::DoLoop (0.25s)"> | |
| <path fill="none" stroke="#b2ada1" stroke-dasharray="1,5" d="M776.729,-3075.77C827.553,-3047.91 877.5,-3005.62 877.5,-2947 877.5,-2947 877.5,-2947 877.5,-2618.5 877.5,-2560.18 872.156,-2536.61 908.5,-2491 919.648,-2477.01 928.614,-2481.22 944.5,-2473 957.037,-2466.51 959.567,-2463.66 972.5,-2458 994.905,-2448.19 1008.02,-2458.07 1024.5,-2440 1054.57,-2407.03 1048.5,-2387.13 1048.5,-2342.5 1048.5,-2342.5 1048.5,-2342.5 1048.5,-1621 1048.5,-1591.07 1048.26,-1557.5 1048.02,-1530.91"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="1051.52,-1530.68 1047.92,-1520.71 1044.52,-1530.74 1051.52,-1530.68"/> | |
| </a> | |
| </g> | |
| <g id="a_edge46-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::HttpNetworkTransaction::DoLoop (0.25s)"> | |
| <text text-anchor="middle" x="1065.5" y="-2218.8" font-family="Times,serif" font-size="14.00"> 0.25s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27 --> | |
| <g id="node27" class="node"><title>N27</title> | |
| <g id="a_node27"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept (1.58s)"> | |
| <polygon fill="#ede5df" stroke="#b27a48" points="1124,-2989 949,-2989 949,-2903 1124,-2903 1124,-2989"/> | |
| <text text-anchor="middle" x="1036.5" y="-2975.4" font-family="Times,serif" font-size="12.00">content</text> | |
| <text text-anchor="middle" x="1036.5" y="-2962.4" font-family="Times,serif" font-size="12.00">mojom</text> | |
| <text text-anchor="middle" x="1036.5" y="-2949.4" font-family="Times,serif" font-size="12.00">URLLoaderFactoryStubDispatch</text> | |
| <text text-anchor="middle" x="1036.5" y="-2936.4" font-family="Times,serif" font-size="12.00">Accept</text> | |
| <text text-anchor="middle" x="1036.5" y="-2923.4" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="1036.5" y="-2910.4" font-family="Times,serif" font-size="12.00">of 1.58s (11.87%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N27 --> | |
| <g id="edge11" class="edge"><title>N1->N27</title> | |
| <g id="a_edge11"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::mojom::URLLoaderFactoryStubDispatch::Accept (1.58s)"> | |
| <path fill="none" stroke="#b27a48" d="M776.68,-3091.88C824.943,-3077.74 881.787,-3057.82 929.5,-3032 948.059,-3021.96 966.639,-3008.63 982.984,-2995.52"/> | |
| <polygon fill="#b27a48" stroke="#b27a48" points="985.292,-2998.15 990.818,-2989.11 980.861,-2992.73 985.292,-2998.15"/> | |
| </a> | |
| </g> | |
| <g id="a_edge11-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::mojom::URLLoaderFactoryStubDispatch::Accept (1.58s)"> | |
| <text text-anchor="middle" x="969.5" y="-3020.8" font-family="Times,serif" font-size="14.00"> 1.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43 --> | |
| <g id="node43" class="node"><title>N43</title> | |
| <g id="a_node43"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::Job::ReportResult (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="1566,-2999 1417,-2999 1417,-2893 1566,-2893 1566,-2999"/> | |
| <text text-anchor="middle" x="1491.5" y="-2984.6" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="1491.5" y="-2970.6" font-family="Times,serif" font-size="13.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1491.5" y="-2956.6" font-family="Times,serif" font-size="13.00">ProxyResolverMojo</text> | |
| <text text-anchor="middle" x="1491.5" y="-2942.6" font-family="Times,serif" font-size="13.00">Job</text> | |
| <text text-anchor="middle" x="1491.5" y="-2928.6" font-family="Times,serif" font-size="13.00">ReportResult</text> | |
| <text text-anchor="middle" x="1491.5" y="-2914.6" font-family="Times,serif" font-size="13.00">0.06s (0.45%)</text> | |
| <text text-anchor="middle" x="1491.5" y="-2900.6" font-family="Times,serif" font-size="13.00">of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N43 --> | |
| <g id="edge48" class="edge"><title>N1->N43</title> | |
| <g id="a_edge48"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::(anonymous namespace)::ProxyResolverMojo::Job::ReportResult (0.23s)"> | |
| <path fill="none" stroke="#b2ada3" d="M776.57,-3095.91C941.406,-3061.58 1255.75,-2996.1 1406.6,-2964.68"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="1407.66,-2968.04 1416.74,-2962.57 1406.23,-2961.18 1407.66,-2968.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge48-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::(anonymous namespace)::ProxyResolverMojo::Job::ReportResult (0.23s)"> | |
| <text text-anchor="middle" x="1172.5" y="-3020.8" font-family="Times,serif" font-size="14.00"> 0.23s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52 --> | |
| <g id="node52" class="node"><title>N52</title> | |
| <g id="a_node52"><a xlink:title="content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="1159,-519.5 1052,-519.5 1052,-466.5 1159,-466.5 1159,-519.5"/> | |
| <text text-anchor="middle" x="1105.5" y="-509.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1105.5" y="-500.1" font-family="Times,serif" font-size="8.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1105.5" y="-491.1" font-family="Times,serif" font-size="8.00">BrowserThreadTaskRunner</text> | |
| <text text-anchor="middle" x="1105.5" y="-482.1" font-family="Times,serif" font-size="8.00">PostDelayedTask</text> | |
| <text text-anchor="middle" x="1105.5" y="-473.1" font-family="Times,serif" font-size="8.00">0 of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N52 --> | |
| <g id="edge97" class="edge"><title>N1->N52</title> | |
| <g id="a_edge97"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M776.515,-3112.1C1046.81,-3095.63 1740.5,-3043.94 1740.5,-2947 1740.5,-2947 1740.5,-2947 1740.5,-628.5 1740.5,-512.581 1330.39,-496.111 1169.33,-494.113"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1169.13,-490.61 1159.09,-494.001 1169.05,-497.61 1169.13,-490.61"/> | |
| </a> | |
| </g> | |
| <g id="a_edge97-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.01s)"> | |
| <text text-anchor="middle" x="1757.5" y="-1848.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N54 --> | |
| <g id="node54" class="node"><title>N54</title> | |
| <g id="a_node54"><a xlink:title="content::BrowserThread::CurrentlyOn (0.06s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1178,-2435.5 1077,-2435.5 1077,-2371.5 1178,-2371.5 1178,-2435.5"/> | |
| <text text-anchor="middle" x="1127.5" y="-2421.1" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="1127.5" y="-2407.1" font-family="Times,serif" font-size="13.00">BrowserThread</text> | |
| <text text-anchor="middle" x="1127.5" y="-2393.1" font-family="Times,serif" font-size="13.00">CurrentlyOn</text> | |
| <text text-anchor="middle" x="1127.5" y="-2379.1" font-family="Times,serif" font-size="13.00">0.06s (0.45%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N54 --> | |
| <g id="edge98" class="edge"><title>N1->N54</title> | |
| <g id="a_edge98"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::BrowserThread::CurrentlyOn (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M776.71,-3098C817.598,-3085.36 861.602,-3064.91 891.5,-3032 917.895,-3002.94 915.5,-2986.25 915.5,-2947 915.5,-2947 915.5,-2947 915.5,-2618.5 915.5,-2561.21 898.932,-2535.91 934.5,-2491 944.004,-2479 1048.65,-2446.51 1062.5,-2440 1064.1,-2439.25 1065.72,-2438.47 1067.34,-2437.68"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1069.33,-2440.6 1076.71,-2433 1066.2,-2434.34 1069.33,-2440.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge98-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun -> content::BrowserThread::CurrentlyOn (0.01s)"> | |
| <text text-anchor="middle" x="932.5" y="-2729.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79 --> | |
| <g id="node79" class="node"><title>N79</title> | |
| <g id="a_node79"><a xlink:title="net::SpdySession::DoWrite (0.17s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="1846,-2968 1769,-2968 1769,-2924 1846,-2924 1846,-2968"/> | |
| <text text-anchor="middle" x="1807.5" y="-2957.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="1807.5" y="-2948.6" font-family="Times,serif" font-size="8.00">SpdySession</text> | |
| <text text-anchor="middle" x="1807.5" y="-2939.6" font-family="Times,serif" font-size="8.00">DoWrite</text> | |
| <text text-anchor="middle" x="1807.5" y="-2930.6" font-family="Times,serif" font-size="8.00">0 of 0.17s (1.28%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N79 --> | |
| <g id="edge61" class="edge"><title>N1->N79</title> | |
| <g id="a_edge61"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::SpdySession::DoWrite (0.17s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M776.795,-3114.97C1033.51,-3106.9 1672.28,-3081.98 1754.5,-3032 1774.62,-3019.77 1788.28,-2996.7 1796.69,-2977.68"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="1800.03,-2978.75 1800.62,-2968.18 1793.56,-2976.08 1800.03,-2978.75"/> | |
| </a> | |
| </g> | |
| <g id="a_edge61-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::SpdySession::DoWrite (0.17s)"> | |
| <text text-anchor="middle" x="1787.5" y="-3020.8" font-family="Times,serif" font-size="14.00"> 0.17s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80 --> | |
| <g id="node80" class="node"><title>N80</title> | |
| <g id="a_node80"><a xlink:title="net::SpdySession::PumpReadLoop (2.90s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="710.5,-2968 630.5,-2968 630.5,-2924 710.5,-2924 710.5,-2968"/> | |
| <text text-anchor="middle" x="670.5" y="-2957.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2948.6" font-family="Times,serif" font-size="8.00">SpdySession</text> | |
| <text text-anchor="middle" x="670.5" y="-2939.6" font-family="Times,serif" font-size="8.00">PumpReadLoop</text> | |
| <text text-anchor="middle" x="670.5" y="-2930.6" font-family="Times,serif" font-size="8.00">0 of 2.90s (21.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N1->N80 --> | |
| <g id="edge2" class="edge"><title>N1->N80</title> | |
| <g id="a_edge2"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::SpdySession::PumpReadLoop (2.90s)"> | |
| <path fill="none" stroke="#b24100" stroke-width="2" stroke-dasharray="1,5" d="M670.5,-3049.92C670.5,-3025.14 670.5,-2998.3 670.5,-2978.25"/> | |
| <polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="674,-2978.15 670.5,-2968.15 667,-2978.15 674,-2978.15"/> | |
| </a> | |
| </g> | |
| <g id="a_edge2-label"><a xlink:title="content::BrowserThreadImpl::IOThreadRun ... net::SpdySession::PumpReadLoop (2.90s)"> | |
| <text text-anchor="middle" x="687.5" y="-3020.8" font-family="Times,serif" font-size="14.00"> 2.90s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N7 --> | |
| <g id="edge33" class="edge"><title>N2->N7</title> | |
| <g id="a_edge33"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpNetworkTransaction::DoLoop (0.43s)"> | |
| <path fill="none" stroke="#b2a895" stroke-dasharray="1,5" d="M720.872,-1602.18C782.692,-1579.53 887.417,-1541.15 961.603,-1513.97"/> | |
| <polygon fill="#b2a895" stroke="#b2a895" points="963.219,-1517.11 971.404,-1510.38 960.81,-1510.54 963.219,-1517.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge33-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpNetworkTransaction::DoLoop (0.43s)"> | |
| <text text-anchor="middle" x="887.5" y="-1549.8" font-family="Times,serif" font-size="14.00"> 0.43s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16 --> | |
| <g id="node16" class="node"><title>N16</title> | |
| <g id="a_node16"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted (1.49s)"> | |
| <polygon fill="#ede6df" stroke="#b27e4e" points="724.5,-1515.5 614.5,-1515.5 614.5,-1447.5 724.5,-1447.5 724.5,-1515.5"/> | |
| <text text-anchor="middle" x="669.5" y="-1502.7" font-family="Times,serif" font-size="11.00">net</text> | |
| <text text-anchor="middle" x="669.5" y="-1490.7" font-family="Times,serif" font-size="11.00">URLRequestHttpJob</text> | |
| <text text-anchor="middle" x="669.5" y="-1478.7" font-family="Times,serif" font-size="11.00">OnStartCompleted</text> | |
| <text text-anchor="middle" x="669.5" y="-1466.7" font-family="Times,serif" font-size="11.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="669.5" y="-1454.7" font-family="Times,serif" font-size="11.00">of 1.49s (11.19%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N16 --> | |
| <g id="edge14" class="edge"><title>N2->N16</title> | |
| <g id="a_edge14"><a xlink:title="net::HttpCache::Transaction::DoLoop -> net::URLRequestHttpJob::OnStartCompleted (1.49s)"> | |
| <path fill="none" stroke="#b27e4e" d="M669.5,-1578.69C669.5,-1561.96 669.5,-1542.74 669.5,-1525.9"/> | |
| <polygon fill="#b27e4e" stroke="#b27e4e" points="673,-1525.77 669.5,-1515.77 666,-1525.77 673,-1525.77"/> | |
| </a> | |
| </g> | |
| <g id="a_edge14-label"><a xlink:title="net::HttpCache::Transaction::DoLoop -> net::URLRequestHttpJob::OnStartCompleted (1.49s)"> | |
| <text text-anchor="middle" x="686.5" y="-1549.8" font-family="Times,serif" font-size="14.00"> 1.49s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N47 --> | |
| <g id="node47" class="node"><title>N47</title> | |
| <g id="a_node47"><a xlink:title="net::HttpCache::ProcessEntryFailure (0.13s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="482.5,-1528 342.5,-1528 342.5,-1435 482.5,-1435 482.5,-1528"/> | |
| <text text-anchor="middle" x="412.5" y="-1512" font-family="Times,serif" font-size="15.00">net</text> | |
| <text text-anchor="middle" x="412.5" y="-1495" font-family="Times,serif" font-size="15.00">HttpCache</text> | |
| <text text-anchor="middle" x="412.5" y="-1478" font-family="Times,serif" font-size="15.00">ProcessEntryFailure</text> | |
| <text text-anchor="middle" x="412.5" y="-1461" font-family="Times,serif" font-size="15.00">0.12s (0.9%)</text> | |
| <text text-anchor="middle" x="412.5" y="-1444" font-family="Times,serif" font-size="15.00">of 0.13s (0.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N47 --> | |
| <g id="edge74" class="edge"><title>N2->N47</title> | |
| <g id="a_edge74"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpCache::ProcessEntryFailure (0.13s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M618.18,-1594.89C582.46,-1576.55 533.832,-1551.24 491.5,-1528 491.409,-1527.95 491.318,-1527.9 491.227,-1527.85"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="493.071,-1524.87 482.627,-1523.09 489.68,-1530.99 493.071,-1524.87"/> | |
| </a> | |
| </g> | |
| <g id="a_edge74-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpCache::ProcessEntryFailure (0.13s)"> | |
| <text text-anchor="middle" x="567.5" y="-1549.8" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51 --> | |
| <g id="node51" class="node"><title>N51</title> | |
| <g id="a_node51"><a xlink:title="net::URLRequestJob::ReadRawDataComplete (0.76s)"> | |
| <polygon fill="#edeae6" stroke="#b29c7f" points="286,-1503.5 191,-1503.5 191,-1459.5 286,-1459.5 286,-1503.5"/> | |
| <text text-anchor="middle" x="238.5" y="-1493.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="238.5" y="-1484.1" font-family="Times,serif" font-size="8.00">URLRequestJob</text> | |
| <text text-anchor="middle" x="238.5" y="-1475.1" font-family="Times,serif" font-size="8.00">ReadRawDataComplete</text> | |
| <text text-anchor="middle" x="238.5" y="-1466.1" font-family="Times,serif" font-size="8.00">0 of 0.76s (5.71%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N51 --> | |
| <g id="edge26" class="edge"><title>N2->N51</title> | |
| <g id="a_edge26"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::URLRequestJob::ReadRawDataComplete (0.76s)"> | |
| <path fill="none" stroke="#b29c7f" stroke-dasharray="1,5" d="M618.248,-1619.78C522.034,-1616.47 319.301,-1604.4 266.5,-1561 252.337,-1549.36 245.335,-1530.01 241.874,-1513.44"/> | |
| <polygon fill="#b29c7f" stroke="#b29c7f" points="245.319,-1512.82 240.145,-1503.57 238.424,-1514.02 245.319,-1512.82"/> | |
| </a> | |
| </g> | |
| <g id="a_edge26-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::URLRequestJob::ReadRawDataComplete (0.76s)"> | |
| <text text-anchor="middle" x="283.5" y="-1549.8" font-family="Times,serif" font-size="14.00"> 0.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N58 --> | |
| <g id="node58" class="node"><title>N58</title> | |
| <g id="a_node58"><a xlink:title="net::HttpCache::CreateEntry (0.09s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ac" points="596,-1515.5 501,-1515.5 501,-1447.5 596,-1447.5 596,-1515.5"/> | |
| <text text-anchor="middle" x="548.5" y="-1500.3" font-family="Times,serif" font-size="14.00">net</text> | |
| <text text-anchor="middle" x="548.5" y="-1485.3" font-family="Times,serif" font-size="14.00">HttpCache</text> | |
| <text text-anchor="middle" x="548.5" y="-1470.3" font-family="Times,serif" font-size="14.00">CreateEntry</text> | |
| <text text-anchor="middle" x="548.5" y="-1455.3" font-family="Times,serif" font-size="14.00">0.09s (0.68%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N2->N58 --> | |
| <g id="edge78" class="edge"><title>N2->N58</title> | |
| <g id="a_edge78"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpCache::CreateEntry (0.09s)"> | |
| <path fill="none" stroke="#b2b1ac" stroke-dasharray="1,5" d="M632.539,-1578.69C617.23,-1561.17 599.54,-1540.92 584.35,-1523.53"/> | |
| <polygon fill="#b2b1ac" stroke="#b2b1ac" points="586.779,-1521 577.564,-1515.77 581.508,-1525.6 586.779,-1521"/> | |
| </a> | |
| </g> | |
| <g id="a_edge78-label"><a xlink:title="net::HttpCache::Transaction::DoLoop ... net::HttpCache::CreateEntry (0.09s)"> | |
| <text text-anchor="middle" x="633.5" y="-1549.8" font-family="Times,serif" font-size="14.00"> 0.09s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3 --> | |
| <g id="node3" class="node"><title>N3</title> | |
| <g id="a_node3"><a xlink:title="content::BrowserThreadImpl::Run (6.42s)"> | |
| <polygon fill="#eddad5" stroke="#b22300" points="712,-3328 629,-3328 629,-3284 712,-3284 712,-3328"/> | |
| <text text-anchor="middle" x="670.5" y="-3317.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="670.5" y="-3308.6" font-family="Times,serif" font-size="8.00">BrowserThreadImpl</text> | |
| <text text-anchor="middle" x="670.5" y="-3299.6" font-family="Times,serif" font-size="8.00">Run</text> | |
| <text text-anchor="middle" x="670.5" y="-3290.6" font-family="Times,serif" font-size="8.00">0 of 6.42s (48.23%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N3->N1 --> | |
| <g id="edge1" class="edge"><title>N3->N1</title> | |
| <g id="a_edge1"><a xlink:title="content::BrowserThreadImpl::Run -> content::BrowserThreadImpl::IOThreadRun (6.42s)"> | |
| <path fill="none" stroke="#b22300" stroke-width="3" d="M670.5,-3283.78C670.5,-3262.8 670.5,-3229.4 670.5,-3198.22"/> | |
| <polygon fill="#b22300" stroke="#b22300" stroke-width="3" points="674,-3198.19 670.5,-3188.19 667,-3198.19 674,-3198.19"/> | |
| </a> | |
| </g> | |
| <g id="a_edge1-label"><a xlink:title="content::BrowserThreadImpl::Run -> content::BrowserThreadImpl::IOThreadRun (6.42s)"> | |
| <text text-anchor="middle" x="687.5" y="-3209.8" font-family="Times,serif" font-size="14.00"> 6.42s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4 --> | |
| <g id="node4" class="node"><title>N4</title> | |
| <g id="a_node4"><a xlink:title="content::ResourceLoader::PrepareToReadMore (1.52s)"> | |
| <polygon fill="#ede6df" stroke="#b27d4c" points="483,-1071 398,-1071 398,-1027 483,-1027 483,-1071"/> | |
| <text text-anchor="middle" x="440.5" y="-1060.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="440.5" y="-1051.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="440.5" y="-1042.6" font-family="Times,serif" font-size="8.00">PrepareToReadMore</text> | |
| <text text-anchor="middle" x="440.5" y="-1033.6" font-family="Times,serif" font-size="8.00">0 of 1.52s (11.42%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12 --> | |
| <g id="node12" class="node"><title>N12</title> | |
| <g id="a_node12"><a xlink:title="content::ResourceLoader::OnReadCompleted (1.16s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d64" points="360,-927 283,-927 283,-883 360,-883 360,-927"/> | |
| <text text-anchor="middle" x="321.5" y="-916.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="321.5" y="-907.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="321.5" y="-898.6" font-family="Times,serif" font-size="8.00">OnReadCompleted</text> | |
| <text text-anchor="middle" x="321.5" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 1.16s (8.72%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N12 --> | |
| <g id="edge23" class="edge"><title>N4->N12</title> | |
| <g id="a_edge23"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::ResourceLoader::OnReadCompleted (0.82s)"> | |
| <path fill="none" stroke="#b29a7b" d="M404.236,-1026.86C385.46,-1014.38 363.41,-997.09 348.5,-977 339.669,-965.101 333.389,-949.97 329.122,-936.736"/> | |
| <polygon fill="#b29a7b" stroke="#b29a7b" points="332.452,-935.655 326.242,-927.071 325.743,-937.654 332.452,-935.655"/> | |
| </a> | |
| </g> | |
| <g id="a_edge23-label"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::ResourceLoader::OnReadCompleted (0.82s)"> | |
| <text text-anchor="middle" x="365.5" y="-965.8" font-family="Times,serif" font-size="14.00"> 0.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30 --> | |
| <g id="node30" class="node"><title>N30</title> | |
| <g id="a_node30"><a xlink:title="net::URLRequest::Read (0.39s)"> | |
| <polygon fill="#edebe9" stroke="#b2a998" points="564,-927 487,-927 487,-883 564,-883 564,-927"/> | |
| <text text-anchor="middle" x="525.5" y="-916.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="525.5" y="-907.6" font-family="Times,serif" font-size="8.00">URLRequest</text> | |
| <text text-anchor="middle" x="525.5" y="-898.6" font-family="Times,serif" font-size="8.00">Read</text> | |
| <text text-anchor="middle" x="525.5" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 0.39s (2.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N30 --> | |
| <g id="edge37" class="edge"><title>N4->N30</title> | |
| <g id="a_edge37"><a xlink:title="content::ResourceLoader::PrepareToReadMore ... net::URLRequest::Read (0.39s)"> | |
| <path fill="none" stroke="#b2a998" stroke-dasharray="1,5" d="M453.225,-1026.74C467.622,-1002.69 491.179,-963.336 507.467,-936.126"/> | |
| <polygon fill="#b2a998" stroke="#b2a998" points="510.555,-937.782 512.688,-927.404 504.548,-934.187 510.555,-937.782"/> | |
| </a> | |
| </g> | |
| <g id="a_edge37-label"><a xlink:title="content::ResourceLoader::PrepareToReadMore ... net::URLRequest::Read (0.39s)"> | |
| <text text-anchor="middle" x="508.5" y="-965.8" font-family="Times,serif" font-size="14.00"> 0.39s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75 --> | |
| <g id="node75" class="node"><title>N75</title> | |
| <g id="a_node75"><a xlink:title="content::LayeredResourceHandler::OnWillRead (0.39s)"> | |
| <polygon fill="#edebe9" stroke="#b2a998" points="747.5,-927 647.5,-927 647.5,-883 747.5,-883 747.5,-927"/> | |
| <text text-anchor="middle" x="697.5" y="-916.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="697.5" y="-907.6" font-family="Times,serif" font-size="8.00">LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="697.5" y="-898.6" font-family="Times,serif" font-size="8.00">OnWillRead</text> | |
| <text text-anchor="middle" x="697.5" y="-889.6" font-family="Times,serif" font-size="8.00">0 of 0.39s (2.93%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N4->N75 --> | |
| <g id="edge36" class="edge"><title>N4->N75</title> | |
| <g id="a_edge36"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::LayeredResourceHandler::OnWillRead (0.39s)"> | |
| <path fill="none" stroke="#b2a998" d="M478.698,-1026.89C524.376,-1001.66 600.835,-959.41 650.203,-932.133"/> | |
| <polygon fill="#b2a998" stroke="#b2a998" points="652.032,-935.121 659.092,-927.221 648.647,-928.994 652.032,-935.121"/> | |
| </a> | |
| </g> | |
| <g id="a_edge36-label"><a xlink:title="content::ResourceLoader::PrepareToReadMore -> content::LayeredResourceHandler::OnWillRead (0.39s)"> | |
| <text text-anchor="middle" x="609.5" y="-965.8" font-family="Times,serif" font-size="14.00"> 0.39s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N2 --> | |
| <g id="edge6" class="edge"><title>N5->N2</title> | |
| <g id="a_edge6"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpCache::Transaction::DoLoop (2.44s)"> | |
| <path fill="none" stroke="#b2500e" d="M669.5,-1715.97C669.5,-1703.79 669.5,-1689.41 669.5,-1675.65"/> | |
| <polygon fill="#b2500e" stroke="#b2500e" points="673,-1675.29 669.5,-1665.29 666,-1675.29 673,-1675.29"/> | |
| </a> | |
| </g> | |
| <g id="a_edge6-label"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpCache::Transaction::DoLoop (2.44s)"> | |
| <text text-anchor="middle" x="686.5" y="-1686.8" font-family="Times,serif" font-size="14.00"> 2.44s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N5->N7 --> | |
| <g id="edge87" class="edge"><title>N5->N7</title> | |
| <g id="a_edge87"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpNetworkTransaction::DoLoop (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M713.231,-1715.96C779.941,-1669.37 907.455,-1580.31 984.254,-1526.67"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="986.707,-1529.23 992.901,-1520.63 982.699,-1523.49 986.707,-1529.23"/> | |
| </a> | |
| </g> | |
| <g id="a_edge87-label"><a xlink:title="net::HttpNetworkTransaction::OnIOComplete -> net::HttpNetworkTransaction::DoLoop (0.06s)"> | |
| <text text-anchor="middle" x="925.5" y="-1618.3" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6 --> | |
| <g id="node6" class="node"><title>N6</title> | |
| <g id="a_node6"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload (2.60s)"> | |
| <polygon fill="#edded5" stroke="#b24704" points="715,-2564.5 626,-2564.5 626,-2520.5 715,-2520.5 715,-2564.5"/> | |
| <text text-anchor="middle" x="670.5" y="-2554.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2545.1" font-family="Times,serif" font-size="8.00">Http2FrameDecoder</text> | |
| <text text-anchor="middle" x="670.5" y="-2536.1" font-family="Times,serif" font-size="8.00">StartDecodingPayload</text> | |
| <text text-anchor="middle" x="670.5" y="-2527.1" font-family="Times,serif" font-size="8.00">0 of 2.60s (19.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36 --> | |
| <g id="node36" class="node"><title>N36</title> | |
| <g id="a_node36"><a xlink:title="net::DataPayloadDecoder::StartDecodingPayload (1.60s)"> | |
| <polygon fill="#ede5de" stroke="#b27947" points="715,-2425.5 626,-2425.5 626,-2381.5 715,-2381.5 715,-2425.5"/> | |
| <text text-anchor="middle" x="670.5" y="-2415.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2406.1" font-family="Times,serif" font-size="8.00">DataPayloadDecoder</text> | |
| <text text-anchor="middle" x="670.5" y="-2397.1" font-family="Times,serif" font-size="8.00">StartDecodingPayload</text> | |
| <text text-anchor="middle" x="670.5" y="-2388.1" font-family="Times,serif" font-size="8.00">0 of 1.60s (12.02%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N36 --> | |
| <g id="edge9" class="edge"><title>N6->N36</title> | |
| <g id="a_edge9"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload -> net::DataPayloadDecoder::StartDecodingPayload (1.60s)"> | |
| <path fill="none" stroke="#b27947" d="M670.5,-2520.39C670.5,-2497.83 670.5,-2461.82 670.5,-2435.92"/> | |
| <polygon fill="#b27947" stroke="#b27947" points="674,-2435.86 670.5,-2425.86 667,-2435.86 674,-2435.86"/> | |
| </a> | |
| </g> | |
| <g id="a_edge9-label"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload -> net::DataPayloadDecoder::StartDecodingPayload (1.60s)"> | |
| <text text-anchor="middle" x="687.5" y="-2461.8" font-family="Times,serif" font-size="14.00"> 1.60s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56 --> | |
| <g id="node56" class="node"><title>N56</title> | |
| <g id="a_node56"><a xlink:title="net::DataPayloadDecoder::ResumeDecodingPayload (0.24s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada2" points="607.5,-2435 485.5,-2435 485.5,-2372 607.5,-2372 607.5,-2435"/> | |
| <text text-anchor="middle" x="546.5" y="-2423" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="546.5" y="-2412" font-family="Times,serif" font-size="10.00">DataPayloadDecoder</text> | |
| <text text-anchor="middle" x="546.5" y="-2401" font-family="Times,serif" font-size="10.00">ResumeDecodingPayload</text> | |
| <text text-anchor="middle" x="546.5" y="-2390" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="546.5" y="-2379" font-family="Times,serif" font-size="10.00">of 0.24s (1.80%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N56 --> | |
| <g id="edge103" class="edge"><title>N6->N56</title> | |
| <g id="a_edge103"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload -> net::DataPayloadDecoder::ResumeDecodingPayload (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M651.397,-2520.39C632.681,-2499.72 603.735,-2467.74 580.987,-2442.6"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="583.45,-2440.11 574.145,-2435.04 578.26,-2444.81 583.45,-2440.11"/> | |
| </a> | |
| </g> | |
| <g id="a_edge103-label"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload -> net::DataPayloadDecoder::ResumeDecodingPayload (0.01s)"> | |
| <text text-anchor="middle" x="625.5" y="-2461.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77 --> | |
| <g id="node77" class="node"><title>N77</title> | |
| <g id="a_node77"><a xlink:title="net::SpdyHttpStream::OnHeadersReceived (0.91s)"> | |
| <polygon fill="#ede9e5" stroke="#b29775" points="816,-2425.5 733,-2425.5 733,-2381.5 816,-2381.5 816,-2425.5"/> | |
| <text text-anchor="middle" x="774.5" y="-2415.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="774.5" y="-2406.1" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="774.5" y="-2397.1" font-family="Times,serif" font-size="8.00">OnHeadersReceived</text> | |
| <text text-anchor="middle" x="774.5" y="-2388.1" font-family="Times,serif" font-size="8.00">0 of 0.91s (6.84%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N6->N77 --> | |
| <g id="edge20" class="edge"><title>N6->N77</title> | |
| <g id="a_edge20"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... net::SpdyHttpStream::OnHeadersReceived (0.91s)"> | |
| <path fill="none" stroke="#b29775" stroke-dasharray="1,5" d="M686.522,-2520.39C704.106,-2497.23 732.454,-2459.89 752.203,-2433.87"/> | |
| <polygon fill="#b29775" stroke="#b29775" points="755.03,-2435.94 758.288,-2425.86 749.454,-2431.7 755.03,-2435.94"/> | |
| </a> | |
| </g> | |
| <g id="a_edge20-label"><a xlink:title="net::Http2FrameDecoder::StartDecodingPayload ... net::SpdyHttpStream::OnHeadersReceived (0.91s)"> | |
| <text text-anchor="middle" x="749.5" y="-2461.8" font-family="Times,serif" font-size="14.00"> 0.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17 --> | |
| <g id="node17" class="node"><title>N17</title> | |
| <g id="a_node17"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop (0.48s)"> | |
| <polygon fill="#edebe8" stroke="#b2a692" points="1450.5,-1364 1356.5,-1364 1356.5,-1311 1450.5,-1311 1450.5,-1364"/> | |
| <text text-anchor="middle" x="1403.5" y="-1353.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="1403.5" y="-1344.6" font-family="Times,serif" font-size="8.00">HttpStreamFactoryImpl</text> | |
| <text text-anchor="middle" x="1403.5" y="-1335.6" font-family="Times,serif" font-size="8.00">JobController</text> | |
| <text text-anchor="middle" x="1403.5" y="-1326.6" font-family="Times,serif" font-size="8.00">RunLoop</text> | |
| <text text-anchor="middle" x="1403.5" y="-1317.6" font-family="Times,serif" font-size="8.00">0 of 0.48s (3.61%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N17 --> | |
| <g id="edge41" class="edge"><title>N7->N17</title> | |
| <g id="a_edge41"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::HttpStreamFactoryImpl::JobController::RunLoop (0.34s)"> | |
| <path fill="none" stroke="#b2aa9b" stroke-dasharray="1,5" d="M1123.61,-1454.46C1176.06,-1436 1247.1,-1409.99 1308.5,-1384 1320.98,-1378.72 1334.2,-1372.68 1346.68,-1366.77"/> | |
| <polygon fill="#b2aa9b" stroke="#b2aa9b" points="1348.54,-1369.76 1356.05,-1362.29 1345.52,-1363.44 1348.54,-1369.76"/> | |
| </a> | |
| </g> | |
| <g id="a_edge41-label"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::HttpStreamFactoryImpl::JobController::RunLoop (0.34s)"> | |
| <text text-anchor="middle" x="1276.5" y="-1405.8" font-family="Times,serif" font-size="14.00"> 0.34s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N41 --> | |
| <g id="node41" class="node"><title>N41</title> | |
| <g id="a_node41"><a xlink:title="net::SpdyHttpStream::ReadResponseBody (0.11s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="888,-1376.5 763,-1376.5 763,-1298.5 888,-1298.5 888,-1376.5"/> | |
| <text text-anchor="middle" x="825.5" y="-1362.1" font-family="Times,serif" font-size="13.00">net</text> | |
| <text text-anchor="middle" x="825.5" y="-1348.1" font-family="Times,serif" font-size="13.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="825.5" y="-1334.1" font-family="Times,serif" font-size="13.00">ReadResponseBody</text> | |
| <text text-anchor="middle" x="825.5" y="-1320.1" font-family="Times,serif" font-size="13.00">0.06s (0.45%)</text> | |
| <text text-anchor="middle" x="825.5" y="-1306.1" font-family="Times,serif" font-size="13.00">of 0.11s (0.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N41 --> | |
| <g id="edge86" class="edge"><title>N7->N41</title> | |
| <g id="a_edge86"><a xlink:title="net::HttpNetworkTransaction::DoLoop -> net::SpdyHttpStream::ReadResponseBody (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" d="M988.008,-1442.45C959.018,-1423.9 924.004,-1401.51 893.913,-1382.26"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="895.466,-1379.1 885.156,-1376.66 891.694,-1385 895.466,-1379.1"/> | |
| </a> | |
| </g> | |
| <g id="a_edge86-label"><a xlink:title="net::HttpNetworkTransaction::DoLoop -> net::SpdyHttpStream::ReadResponseBody (0.06s)"> | |
| <text text-anchor="middle" x="960.5" y="-1405.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N62 --> | |
| <g id="node62" class="node"><title>N62</title> | |
| <g id="a_node62"><a xlink:title="net::HttpRequestHeaders::SetHeaderInternal (0.05s)"> | |
| <polygon fill="#ededec" stroke="#b2b1af" points="1300,-1374 1185,-1374 1185,-1301 1300,-1301 1300,-1374"/> | |
| <text text-anchor="middle" x="1242.5" y="-1360.4" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="1242.5" y="-1347.4" font-family="Times,serif" font-size="12.00">HttpRequestHeaders</text> | |
| <text text-anchor="middle" x="1242.5" y="-1334.4" font-family="Times,serif" font-size="12.00">SetHeaderInternal</text> | |
| <text text-anchor="middle" x="1242.5" y="-1321.4" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="1242.5" y="-1308.4" font-family="Times,serif" font-size="12.00">of 0.05s (0.38%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N62 --> | |
| <g id="edge93" class="edge"><title>N7->N62</title> | |
| <g id="a_edge93"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::HttpRequestHeaders::SetHeaderInternal (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1067.51,-1442.33C1076.92,-1427.74 1089.42,-1412.18 1104.5,-1402 1131.84,-1383.54 1146.44,-1397.58 1176.5,-1384 1179.7,-1382.55 1182.92,-1380.95 1186.11,-1379.23"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1188.08,-1382.14 1195.02,-1374.13 1184.6,-1376.06 1188.08,-1382.14"/> | |
| </a> | |
| </g> | |
| <g id="a_edge93-label"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::HttpRequestHeaders::SetHeaderInternal (0.03s)"> | |
| <text text-anchor="middle" x="1121.5" y="-1405.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N71 --> | |
| <g id="node71" class="node"><title>N71</title> | |
| <g id="a_node71"><a xlink:title="net::CreateSpdyHeadersFromHttpRequest (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ad" points="1167.5,-1367.5 971.5,-1367.5 971.5,-1307.5 1167.5,-1307.5 1167.5,-1367.5"/> | |
| <text text-anchor="middle" x="1069.5" y="-1353.9" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="1069.5" y="-1340.9" font-family="Times,serif" font-size="12.00">CreateSpdyHeadersFromHttpRequest</text> | |
| <text text-anchor="middle" x="1069.5" y="-1327.9" font-family="Times,serif" font-size="12.00">0.03s (0.23%)</text> | |
| <text text-anchor="middle" x="1069.5" y="-1314.9" font-family="Times,serif" font-size="12.00">of 0.08s (0.6%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N7->N71 --> | |
| <g id="edge79" class="edge"><title>N7->N71</title> | |
| <g id="a_edge79"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::CreateSpdyHeadersFromHttpRequest (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1044.96,-1442.36C1044.77,-1429.46 1045.31,-1415.04 1047.5,-1402 1048.88,-1393.82 1051.19,-1385.29 1053.8,-1377.23"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1057.14,-1378.28 1057.11,-1367.68 1050.53,-1375.99 1057.14,-1378.28"/> | |
| </a> | |
| </g> | |
| <g id="a_edge79-label"><a xlink:title="net::HttpNetworkTransaction::DoLoop ... net::CreateSpdyHeadersFromHttpRequest (0.08s)"> | |
| <text text-anchor="middle" x="1064.5" y="-1405.8" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8 --> | |
| <g id="node8" class="node"><title>N8</title> | |
| <g id="a_node8"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest (1.50s)"> | |
| <polygon fill="#ede6df" stroke="#b27e4d" points="1129.5,-2839.5 943.5,-2839.5 943.5,-2761.5 1129.5,-2761.5 1129.5,-2839.5"/> | |
| <text text-anchor="middle" x="1036.5" y="-2825.1" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="1036.5" y="-2811.1" font-family="Times,serif" font-size="13.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="1036.5" y="-2797.1" font-family="Times,serif" font-size="13.00">ContinuePendingBeginRequest</text> | |
| <text text-anchor="middle" x="1036.5" y="-2783.1" font-family="Times,serif" font-size="13.00">0.05s (0.38%)</text> | |
| <text text-anchor="middle" x="1036.5" y="-2769.1" font-family="Times,serif" font-size="13.00">of 1.50s (11.27%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20 --> | |
| <g id="node20" class="node"><title>N20</title> | |
| <g id="a_node20"><a xlink:title="content::ResourceLoader::StartRequest (0.80s)"> | |
| <polygon fill="#edeae6" stroke="#b29b7c" points="1075,-2698.5 998,-2698.5 998,-2654.5 1075,-2654.5 1075,-2698.5"/> | |
| <text text-anchor="middle" x="1036.5" y="-2688.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="1036.5" y="-2679.1" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="1036.5" y="-2670.1" font-family="Times,serif" font-size="8.00">StartRequest</text> | |
| <text text-anchor="middle" x="1036.5" y="-2661.1" font-family="Times,serif" font-size="8.00">0 of 0.80s (6.01%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N20 --> | |
| <g id="edge25" class="edge"><title>N8->N20</title> | |
| <g id="a_edge25"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest ... content::ResourceLoader::StartRequest (0.80s)"> | |
| <path fill="none" stroke="#b29b7c" stroke-dasharray="1,5" d="M1036.5,-2761.23C1036.5,-2744.43 1036.5,-2724.93 1036.5,-2708.99"/> | |
| <polygon fill="#b29b7c" stroke="#b29b7c" points="1040,-2708.59 1036.5,-2698.59 1033,-2708.59 1040,-2708.59"/> | |
| </a> | |
| </g> | |
| <g id="a_edge25-label"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest ... content::ResourceLoader::StartRequest (0.80s)"> | |
| <text text-anchor="middle" x="1053.5" y="-2729.8" font-family="Times,serif" font-size="14.00"> 0.80s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25 --> | |
| <g id="node25" class="node"><title>N25</title> | |
| <g id="a_node25"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler (0.58s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="1371,-2708 1234,-2708 1234,-2645 1371,-2645 1371,-2708"/> | |
| <text text-anchor="middle" x="1302.5" y="-2696" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="1302.5" y="-2685" font-family="Times,serif" font-size="10.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="1302.5" y="-2674" font-family="Times,serif" font-size="10.00">CreateResourceHandler</text> | |
| <text text-anchor="middle" x="1302.5" y="-2663" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="1302.5" y="-2652" font-family="Times,serif" font-size="10.00">of 0.58s (4.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N25 --> | |
| <g id="edge30" class="edge"><title>N8->N25</title> | |
| <g id="a_edge30"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest -> content::ResourceDispatcherHostImpl::CreateResourceHandler (0.58s)"> | |
| <path fill="none" stroke="#b2a38b" d="M1129.56,-2765.72C1148.92,-2758.06 1169.03,-2749.63 1187.5,-2741 1205.45,-2732.61 1224.46,-2722.61 1241.74,-2713.05"/> | |
| <polygon fill="#b2a38b" stroke="#b2a38b" points="1243.58,-2716.03 1250.6,-2708.1 1240.16,-2709.92 1243.58,-2716.03"/> | |
| </a> | |
| </g> | |
| <g id="a_edge30-label"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest -> content::ResourceDispatcherHostImpl::CreateResourceHandler (0.58s)"> | |
| <text text-anchor="middle" x="1234.5" y="-2729.8" font-family="Times,serif" font-size="14.00"> 0.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N8->N54 --> | |
| <g id="edge94" class="edge"><title>N8->N54</title> | |
| <g id="a_edge94"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest ... content::BrowserThread::CurrentlyOn (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M1066.76,-2761.35C1095.77,-2722.05 1137.47,-2657.7 1153.5,-2594 1164.67,-2549.61 1160.16,-2536.29 1153.5,-2491 1151.26,-2475.75 1146.9,-2459.45 1142.39,-2445.17"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1145.7,-2444.04 1139.26,-2435.63 1139.05,-2446.23 1145.7,-2444.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge94-label"><a xlink:title="content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest ... content::BrowserThread::CurrentlyOn (0.02s)"> | |
| <text text-anchor="middle" x="1165.5" y="-2615.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9 --> | |
| <g id="node9" class="node"><title>N9</title> | |
| <g id="a_node9"><a xlink:title="net::SpdyHttpStream::OnClose (1.70s)"> | |
| <polygon fill="#ede4de" stroke="#b27540" points="715,-2083 626,-2083 626,-2020 715,-2020 715,-2083"/> | |
| <text text-anchor="middle" x="670.5" y="-2071" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2060" font-family="Times,serif" font-size="10.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="670.5" y="-2049" font-family="Times,serif" font-size="10.00">OnClose</text> | |
| <text text-anchor="middle" x="670.5" y="-2038" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="670.5" y="-2027" font-family="Times,serif" font-size="10.00">of 1.70s (12.77%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N5 --> | |
| <g id="edge21" class="edge"><title>N9->N5</title> | |
| <g id="a_edge21"><a xlink:title="net::SpdyHttpStream::OnClose ... net::HttpNetworkTransaction::OnIOComplete (0.86s)"> | |
| <path fill="none" stroke="#b29978" stroke-dasharray="1,5" d="M695.944,-2019.73C706.068,-2005.3 716.302,-1987.28 720.5,-1969 734.327,-1908.79 732.024,-1890.69 720.5,-1830 717.641,-1814.94 710.273,-1800.2 701.998,-1787.49"/> | |
| <polygon fill="#b29978" stroke="#b29978" points="704.726,-1785.28 696.168,-1779.03 698.962,-1789.25 704.726,-1785.28"/> | |
| </a> | |
| </g> | |
| <g id="a_edge21-label"><a xlink:title="net::SpdyHttpStream::OnClose ... net::HttpNetworkTransaction::OnIOComplete (0.86s)"> | |
| <text text-anchor="middle" x="747.5" y="-1895.8" font-family="Times,serif" font-size="14.00"> 0.86s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34 --> | |
| <g id="node34" class="node"><title>N34</title> | |
| <g id="a_node34"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback (0.82s)"> | |
| <polygon fill="#ede9e5" stroke="#b29a7b" points="712,-1969 611,-1969 611,-1925 712,-1925 712,-1969"/> | |
| <text text-anchor="middle" x="661.5" y="-1958.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="661.5" y="-1949.6" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="661.5" y="-1940.6" font-family="Times,serif" font-size="8.00">DoBufferedReadCallback</text> | |
| <text text-anchor="middle" x="661.5" y="-1931.6" font-family="Times,serif" font-size="8.00">0 of 0.82s (6.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N9->N34 --> | |
| <g id="edge24" class="edge"><title>N9->N34</title> | |
| <g id="a_edge24"><a xlink:title="net::SpdyHttpStream::OnClose -> net::SpdyHttpStream::DoBufferedReadCallback (0.82s)"> | |
| <path fill="none" stroke="#b29a7b" d="M667.8,-2019.75C666.683,-2007.03 665.39,-1992.3 664.267,-1979.51"/> | |
| <polygon fill="#b29a7b" stroke="#b29a7b" points="667.732,-1978.96 663.371,-1969.3 660.759,-1979.57 667.732,-1978.96"/> | |
| </a> | |
| </g> | |
| <g id="a_edge24-label"><a xlink:title="net::SpdyHttpStream::OnClose -> net::SpdyHttpStream::DoBufferedReadCallback (0.82s)"> | |
| <text text-anchor="middle" x="683.5" y="-1990.8" font-family="Times,serif" font-size="14.00"> 0.82s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10 --> | |
| <g id="node10" class="node"><title>N10</title> | |
| <g id="a_node10"><a xlink:title="content::ResourceLoader::CompleteRead (1.16s)"> | |
| <polygon fill="#ede8e2" stroke="#b28d64" points="366.5,-800 276.5,-800 276.5,-732 366.5,-732 366.5,-800"/> | |
| <text text-anchor="middle" x="321.5" y="-787.2" font-family="Times,serif" font-size="11.00">content</text> | |
| <text text-anchor="middle" x="321.5" y="-775.2" font-family="Times,serif" font-size="11.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="321.5" y="-763.2" font-family="Times,serif" font-size="11.00">CompleteRead</text> | |
| <text text-anchor="middle" x="321.5" y="-751.2" font-family="Times,serif" font-size="11.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="321.5" y="-739.2" font-family="Times,serif" font-size="11.00">of 1.16s (8.72%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N4 --> | |
| <g id="edge19" class="edge"><title>N10->N4</title> | |
| <g id="a_edge19"><a xlink:title="content::ResourceLoader::CompleteRead -> content::ResourceLoader::PrepareToReadMore (0.91s)"> | |
| <path fill="none" stroke="#b29775" d="M341.907,-800.013C347.935,-810.384 354.304,-822.002 359.5,-833 389.564,-896.638 416.666,-974.692 430.606,-1017.06"/> | |
| <polygon fill="#b29775" stroke="#b29775" points="427.349,-1018.36 433.78,-1026.78 434.004,-1016.19 427.349,-1018.36"/> | |
| </a> | |
| </g> | |
| <g id="a_edge19-label"><a xlink:title="content::ResourceLoader::CompleteRead -> content::ResourceLoader::PrepareToReadMore (0.91s)"> | |
| <text text-anchor="middle" x="422.5" y="-901.3" font-family="Times,serif" font-size="14.00"> 0.91s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63 --> | |
| <g id="node63" class="node"><title>N63</title> | |
| <g id="a_node63"><a xlink:title="content::ResourceDispatcherHostImpl::DidFinishLoading (0.60s)"> | |
| <polygon fill="#edebe7" stroke="#b2a28a" points="390,-661 253,-661 253,-598 390,-598 390,-661"/> | |
| <text text-anchor="middle" x="321.5" y="-649" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="321.5" y="-638" font-family="Times,serif" font-size="10.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="321.5" y="-627" font-family="Times,serif" font-size="10.00">DidFinishLoading</text> | |
| <text text-anchor="middle" x="321.5" y="-616" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="321.5" y="-605" font-family="Times,serif" font-size="10.00">of 0.60s (4.51%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N63 --> | |
| <g id="edge29" class="edge"><title>N10->N63</title> | |
| <g id="a_edge29"><a xlink:title="content::ResourceLoader::CompleteRead ... content::ResourceDispatcherHostImpl::DidFinishLoading (0.60s)"> | |
| <path fill="none" stroke="#b2a28a" stroke-dasharray="1,5" d="M321.5,-731.753C321.5,-713.421 321.5,-690.516 321.5,-671.129"/> | |
| <polygon fill="#b2a28a" stroke="#b2a28a" points="325,-671.065 321.5,-661.065 318,-671.065 325,-671.065"/> | |
| </a> | |
| </g> | |
| <g id="a_edge29-label"><a xlink:title="content::ResourceLoader::CompleteRead ... content::ResourceDispatcherHostImpl::DidFinishLoading (0.60s)"> | |
| <text text-anchor="middle" x="338.5" y="-687.8" font-family="Times,serif" font-size="14.00"> 0.60s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74 --> | |
| <g id="node74" class="node"><title>N74</title> | |
| <g id="a_node74"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="217.5,-651.5 117.5,-651.5 117.5,-607.5 217.5,-607.5 217.5,-651.5"/> | |
| <text text-anchor="middle" x="167.5" y="-641.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="167.5" y="-632.1" font-family="Times,serif" font-size="8.00">LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="167.5" y="-623.1" font-family="Times,serif" font-size="8.00">OnReadCompleted</text> | |
| <text text-anchor="middle" x="167.5" y="-614.1" font-family="Times,serif" font-size="8.00">0 of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N10->N74 --> | |
| <g id="edge50" class="edge"><title>N10->N74</title> | |
| <g id="a_edge50"><a xlink:title="content::ResourceLoader::CompleteRead -> content::LayeredResourceHandler::OnReadCompleted (0.23s)"> | |
| <path fill="none" stroke="#b2ada3" d="M283.433,-731.753C257.553,-709.15 223.711,-679.593 199.278,-658.254"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="201.532,-655.576 191.697,-651.633 196.927,-660.848 201.532,-655.576"/> | |
| </a> | |
| </g> | |
| <g id="a_edge50-label"><a xlink:title="content::ResourceLoader::CompleteRead -> content::LayeredResourceHandler::OnReadCompleted (0.23s)"> | |
| <text text-anchor="middle" x="261.5" y="-687.8" font-family="Times,serif" font-size="14.00"> 0.23s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11 --> | |
| <g id="node11" class="node"><title>N11</title> | |
| <g id="a_node11"><a xlink:title="net::SpdyHttpStream::DoResponseCallback (1.59s)"> | |
| <polygon fill="#ede5de" stroke="#b27a47" points="712,-1874 627,-1874 627,-1830 712,-1830 712,-1874"/> | |
| <text text-anchor="middle" x="669.5" y="-1863.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="669.5" y="-1854.6" font-family="Times,serif" font-size="8.00">SpdyHttpStream</text> | |
| <text text-anchor="middle" x="669.5" y="-1845.6" font-family="Times,serif" font-size="8.00">DoResponseCallback</text> | |
| <text text-anchor="middle" x="669.5" y="-1836.6" font-family="Times,serif" font-size="8.00">0 of 1.59s (11.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N11->N5 --> | |
| <g id="edge10" class="edge"><title>N11->N5</title> | |
| <g id="a_edge10"><a xlink:title="net::SpdyHttpStream::DoResponseCallback -> net::HttpNetworkTransaction::OnIOComplete (1.59s)"> | |
| <path fill="none" stroke="#b27a47" d="M669.5,-1829.76C669.5,-1818.08 669.5,-1803.19 669.5,-1789.35"/> | |
| <polygon fill="#b27a47" stroke="#b27a47" points="673,-1789.04 669.5,-1779.04 666,-1789.04 673,-1789.04"/> | |
| </a> | |
| </g> | |
| <g id="a_edge10-label"><a xlink:title="net::SpdyHttpStream::DoResponseCallback -> net::HttpNetworkTransaction::OnIOComplete (1.59s)"> | |
| <text text-anchor="middle" x="686.5" y="-1800.8" font-family="Times,serif" font-size="14.00"> 1.59s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N12->N10 --> | |
| <g id="edge16" class="edge"><title>N12->N10</title> | |
| <g id="a_edge16"><a xlink:title="content::ResourceLoader::OnReadCompleted -> content::ResourceLoader::CompleteRead (1.16s)"> | |
| <path fill="none" stroke="#b28d64" d="M321.5,-882.894C321.5,-863.585 321.5,-834.423 321.5,-810.182"/> | |
| <polygon fill="#b28d64" stroke="#b28d64" points="325,-810.138 321.5,-800.138 318,-810.138 325,-810.138"/> | |
| </a> | |
| </g> | |
| <g id="a_edge16-label"><a xlink:title="content::ResourceLoader::OnReadCompleted -> content::ResourceLoader::CompleteRead (1.16s)"> | |
| <text text-anchor="middle" x="338.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 1.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13 --> | |
| <g id="node13" class="node"><title>N13</title> | |
| <g id="a_node13"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame (2.83s)"> | |
| <polygon fill="#edded5" stroke="#b24200" points="715,-2698.5 626,-2698.5 626,-2654.5 715,-2654.5 715,-2698.5"/> | |
| <text text-anchor="middle" x="670.5" y="-2688.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2679.1" font-family="Times,serif" font-size="8.00">Http2DecoderAdapter</text> | |
| <text text-anchor="middle" x="670.5" y="-2670.1" font-family="Times,serif" font-size="8.00">ProcessInputFrame</text> | |
| <text text-anchor="middle" x="670.5" y="-2661.1" font-family="Times,serif" font-size="8.00">0 of 2.83s (21.26%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N6 --> | |
| <g id="edge5" class="edge"><title>N13->N6</title> | |
| <g id="a_edge5"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame -> net::Http2FrameDecoder::StartDecodingPayload (2.60s)"> | |
| <path fill="none" stroke="#b24704" d="M670.5,-2654.29C670.5,-2632.83 670.5,-2599.42 670.5,-2574.89"/> | |
| <polygon fill="#b24704" stroke="#b24704" points="674,-2574.66 670.5,-2564.66 667,-2574.66 674,-2574.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge5-label"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame -> net::Http2FrameDecoder::StartDecodingPayload (2.60s)"> | |
| <text text-anchor="middle" x="687.5" y="-2615.8" font-family="Times,serif" font-size="14.00"> 2.60s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N13->N56 --> | |
| <g id="edge51" class="edge"><title>N13->N56</title> | |
| <g id="a_edge51"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame ... net::DataPayloadDecoder::ResumeDecodingPayload (0.23s)"> | |
| <path fill="none" stroke="#b2ada3" stroke-dasharray="1,5" d="M638.802,-2654.24C619.495,-2639.6 596.018,-2618.41 582.5,-2594 556.662,-2547.34 549.04,-2485.39 546.968,-2445.24"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="550.456,-2444.86 546.537,-2435.02 543.462,-2445.16 550.456,-2444.86"/> | |
| </a> | |
| </g> | |
| <g id="a_edge51-label"><a xlink:title="net::Http2DecoderAdapter::ProcessInputFrame ... net::DataPayloadDecoder::ResumeDecodingPayload (0.23s)"> | |
| <text text-anchor="middle" x="599.5" y="-2538.8" font-family="Times,serif" font-size="14.00"> 0.23s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14 --> | |
| <g id="node14" class="node"><title>N14</title> | |
| <g id="a_node14"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper (0.44s)"> | |
| <polygon fill="#edebe9" stroke="#b2a794" points="1131.5,-393 967.5,-393 967.5,-285 1131.5,-285 1131.5,-393"/> | |
| <text text-anchor="middle" x="1049.5" y="-374.6" font-family="Times,serif" font-size="18.00">content</text> | |
| <text text-anchor="middle" x="1049.5" y="-354.6" font-family="Times,serif" font-size="18.00">BrowserThreadImpl</text> | |
| <text text-anchor="middle" x="1049.5" y="-334.6" font-family="Times,serif" font-size="18.00">PostTaskHelper</text> | |
| <text text-anchor="middle" x="1049.5" y="-314.6" font-family="Times,serif" font-size="18.00">0.29s (2.18%)</text> | |
| <text text-anchor="middle" x="1049.5" y="-294.6" font-family="Times,serif" font-size="18.00">of 0.44s (3.31%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N38 --> | |
| <g id="node38" class="node"><title>N38</title> | |
| <g id="a_node38"><a xlink:title="content::BrowserThread::GetCurrentThreadIdentifier (0.15s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="1145.5,-234 953.5,-234 953.5,-154 1145.5,-154 1145.5,-234"/> | |
| <text text-anchor="middle" x="1049.5" y="-217.2" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="1049.5" y="-199.2" font-family="Times,serif" font-size="16.00">BrowserThread</text> | |
| <text text-anchor="middle" x="1049.5" y="-181.2" font-family="Times,serif" font-size="16.00">GetCurrentThreadIdentifier</text> | |
| <text text-anchor="middle" x="1049.5" y="-163.2" font-family="Times,serif" font-size="16.00">0.15s (1.13%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N14->N38 --> | |
| <g id="edge66" class="edge"><title>N14->N38</title> | |
| <g id="a_edge66"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper -> content::BrowserThread::GetCurrentThreadIdentifier (0.15s)"> | |
| <path fill="none" stroke="#b2afa8" d="M1049.5,-284.752C1049.5,-271.594 1049.5,-257.552 1049.5,-244.576"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="1053,-244.436 1049.5,-234.436 1046,-244.436 1053,-244.436"/> | |
| </a> | |
| </g> | |
| <g id="a_edge66-label"><a xlink:title="content::BrowserThreadImpl::PostTaskHelper -> content::BrowserThread::GetCurrentThreadIdentifier (0.15s)"> | |
| <text text-anchor="middle" x="1066.5" y="-255.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15 --> | |
| <g id="node15" class="node"><title>N15</title> | |
| <g id="a_node15"><a xlink:title="net::Http2DecoderAdapter::OnDataEnd (1.77s)"> | |
| <polygon fill="#ede4dd" stroke="#b2713b" points="715,-2304 626,-2304 626,-2260 715,-2260 715,-2304"/> | |
| <text text-anchor="middle" x="670.5" y="-2293.6" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2284.6" font-family="Times,serif" font-size="8.00">Http2DecoderAdapter</text> | |
| <text text-anchor="middle" x="670.5" y="-2275.6" font-family="Times,serif" font-size="8.00">OnDataEnd</text> | |
| <text text-anchor="middle" x="670.5" y="-2266.6" font-family="Times,serif" font-size="8.00">0 of 1.77s (13.30%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44 --> | |
| <g id="node44" class="node"><title>N44</title> | |
| <g id="a_node44"><a xlink:title="net::SpdyStream::OnDataReceived (1.79s)"> | |
| <polygon fill="#ede4dd" stroke="#b2703a" points="715,-2197 626,-2197 626,-2134 715,-2134 715,-2197"/> | |
| <text text-anchor="middle" x="670.5" y="-2185" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2174" font-family="Times,serif" font-size="10.00">SpdyStream</text> | |
| <text text-anchor="middle" x="670.5" y="-2163" font-family="Times,serif" font-size="10.00">OnDataReceived</text> | |
| <text text-anchor="middle" x="670.5" y="-2152" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="670.5" y="-2141" font-family="Times,serif" font-size="10.00">of 1.79s (13.45%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N15->N44 --> | |
| <g id="edge7" class="edge"><title>N15->N44</title> | |
| <g id="a_edge7"><a xlink:title="net::Http2DecoderAdapter::OnDataEnd ... net::SpdyStream::OnDataReceived (1.77s)"> | |
| <path fill="none" stroke="#b2713b" stroke-dasharray="1,5" d="M670.5,-2260C670.5,-2245.32 670.5,-2225.24 670.5,-2207.45"/> | |
| <polygon fill="#b2713b" stroke="#b2713b" points="674,-2207.3 670.5,-2197.3 667,-2207.3 674,-2207.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge7-label"><a xlink:title="net::Http2DecoderAdapter::OnDataEnd ... net::SpdyStream::OnDataReceived (1.77s)"> | |
| <text text-anchor="middle" x="687.5" y="-2218.8" font-family="Times,serif" font-size="14.00"> 1.77s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22 --> | |
| <g id="node22" class="node"><title>N22</title> | |
| <g id="a_node22"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete (1.31s)"> | |
| <polygon fill="#ede7e1" stroke="#b2865a" points="717,-1359.5 622,-1359.5 622,-1315.5 717,-1315.5 717,-1359.5"/> | |
| <text text-anchor="middle" x="669.5" y="-1349.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="669.5" y="-1340.1" font-family="Times,serif" font-size="8.00">URLRequestJob</text> | |
| <text text-anchor="middle" x="669.5" y="-1331.1" font-family="Times,serif" font-size="8.00">NotifyHeadersComplete</text> | |
| <text text-anchor="middle" x="669.5" y="-1322.1" font-family="Times,serif" font-size="8.00">0 of 1.31s (9.84%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N22 --> | |
| <g id="edge15" class="edge"><title>N16->N22</title> | |
| <g id="a_edge15"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted ... net::URLRequestJob::NotifyHeadersComplete (1.31s)"> | |
| <path fill="none" stroke="#b2865a" stroke-dasharray="1,5" d="M669.5,-1447.21C669.5,-1423.85 669.5,-1392.83 669.5,-1369.91"/> | |
| <polygon fill="#b2865a" stroke="#b2865a" points="673,-1369.69 669.5,-1359.69 666,-1369.69 673,-1369.69"/> | |
| </a> | |
| </g> | |
| <g id="a_edge15-label"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted ... net::URLRequestJob::NotifyHeadersComplete (1.31s)"> | |
| <text text-anchor="middle" x="686.5" y="-1405.8" font-family="Times,serif" font-size="14.00"> 1.31s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N48 --> | |
| <g id="node48" class="node"><title>N48</title> | |
| <g id="a_node48"><a xlink:title="net::NetworkDelegate::NotifyHeadersReceived (0.14s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="603.5,-1384 441.5,-1384 441.5,-1291 603.5,-1291 603.5,-1384"/> | |
| <text text-anchor="middle" x="522.5" y="-1368" font-family="Times,serif" font-size="15.00">net</text> | |
| <text text-anchor="middle" x="522.5" y="-1351" font-family="Times,serif" font-size="15.00">NetworkDelegate</text> | |
| <text text-anchor="middle" x="522.5" y="-1334" font-family="Times,serif" font-size="15.00">NotifyHeadersReceived</text> | |
| <text text-anchor="middle" x="522.5" y="-1317" font-family="Times,serif" font-size="15.00">0.11s (0.83%)</text> | |
| <text text-anchor="middle" x="522.5" y="-1300" font-family="Times,serif" font-size="15.00">of 0.14s (1.05%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N16->N48 --> | |
| <g id="edge72" class="edge"><title>N16->N48</title> | |
| <g id="a_edge72"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted -> net::NetworkDelegate::NotifyHeadersReceived (0.14s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M635.035,-1447.21C617.803,-1430.56 596.539,-1410.02 577.151,-1391.29"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="579.449,-1388.65 569.825,-1384.22 574.585,-1393.68 579.449,-1388.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge72-label"><a xlink:title="net::URLRequestHttpJob::OnStartCompleted -> net::NetworkDelegate::NotifyHeadersReceived (0.14s)"> | |
| <text text-anchor="middle" x="617.5" y="-1405.8" font-family="Times,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57 --> | |
| <g id="node57" class="node"><title>N57</title> | |
| <g id="a_node57"><a xlink:title="net::HttpStreamFactoryImpl::JobController::DoResolveProxy (0.34s)"> | |
| <polygon fill="#edecea" stroke="#b2aa9b" points="1467.5,-1240 1339.5,-1240 1339.5,-1154 1467.5,-1154 1467.5,-1240"/> | |
| <text text-anchor="middle" x="1403.5" y="-1226.4" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="1403.5" y="-1213.4" font-family="Times,serif" font-size="12.00">HttpStreamFactoryImpl</text> | |
| <text text-anchor="middle" x="1403.5" y="-1200.4" font-family="Times,serif" font-size="12.00">JobController</text> | |
| <text text-anchor="middle" x="1403.5" y="-1187.4" font-family="Times,serif" font-size="12.00">DoResolveProxy</text> | |
| <text text-anchor="middle" x="1403.5" y="-1174.4" font-family="Times,serif" font-size="12.00">0.03s (0.23%)</text> | |
| <text text-anchor="middle" x="1403.5" y="-1161.4" font-family="Times,serif" font-size="12.00">of 0.34s (2.55%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N57 --> | |
| <g id="edge42" class="edge"><title>N17->N57</title> | |
| <g id="a_edge42"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop -> net::HttpStreamFactoryImpl::JobController::DoResolveProxy (0.34s)"> | |
| <path fill="none" stroke="#b2aa9b" d="M1403.5,-1310.77C1403.5,-1293.84 1403.5,-1271.07 1403.5,-1250.43"/> | |
| <polygon fill="#b2aa9b" stroke="#b2aa9b" points="1407,-1250.18 1403.5,-1240.18 1400,-1250.18 1407,-1250.18"/> | |
| </a> | |
| </g> | |
| <g id="a_edge42-label"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop -> net::HttpStreamFactoryImpl::JobController::DoResolveProxy (0.34s)"> | |
| <text text-anchor="middle" x="1420.5" y="-1261.8" font-family="Times,serif" font-size="14.00"> 0.34s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N66 --> | |
| <g id="node66" class="node"><title>N66</title> | |
| <g id="a_node66"><a xlink:title="net::HttpStreamFactoryImpl::JobController::DoCreateJobs (0.14s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="1321.5,-1223.5 1227.5,-1223.5 1227.5,-1170.5 1321.5,-1170.5 1321.5,-1223.5"/> | |
| <text text-anchor="middle" x="1274.5" y="-1213.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="1274.5" y="-1204.1" font-family="Times,serif" font-size="8.00">HttpStreamFactoryImpl</text> | |
| <text text-anchor="middle" x="1274.5" y="-1195.1" font-family="Times,serif" font-size="8.00">JobController</text> | |
| <text text-anchor="middle" x="1274.5" y="-1186.1" font-family="Times,serif" font-size="8.00">DoCreateJobs</text> | |
| <text text-anchor="middle" x="1274.5" y="-1177.1" font-family="Times,serif" font-size="8.00">0 of 0.14s (1.05%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N17->N66 --> | |
| <g id="edge71" class="edge"><title>N17->N66</title> | |
| <g id="a_edge71"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop -> net::HttpStreamFactoryImpl::JobController::DoCreateJobs (0.14s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M1379.54,-1310.77C1358.63,-1288.33 1328.17,-1255.62 1305.42,-1231.2"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1307.71,-1228.52 1298.33,-1223.59 1302.59,-1233.29 1307.71,-1228.52"/> | |
| </a> | |
| </g> | |
| <g id="a_edge71-label"><a xlink:title="net::HttpStreamFactoryImpl::JobController::RunLoop -> net::HttpStreamFactoryImpl::JobController::DoCreateJobs (0.14s)"> | |
| <text text-anchor="middle" x="1359.5" y="-1261.8" font-family="Times,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18 --> | |
| <g id="node18" class="node"><title>N18</title> | |
| <g id="a_node18"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers (0.42s)"> | |
| <polygon fill="#edebe9" stroke="#b2a896" points="1625.5,-2591.5 1421.5,-2591.5 1421.5,-2493.5 1625.5,-2493.5 1625.5,-2591.5"/> | |
| <text text-anchor="middle" x="1523.5" y="-2574.7" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="1523.5" y="-2556.7" font-family="Times,serif" font-size="16.00">ResourceDispatcherHostImpl</text> | |
| <text text-anchor="middle" x="1523.5" y="-2538.7" font-family="Times,serif" font-size="16.00">AddStandardHandlers</text> | |
| <text text-anchor="middle" x="1523.5" y="-2520.7" font-family="Times,serif" font-size="16.00">0.19s (1.43%)</text> | |
| <text text-anchor="middle" x="1523.5" y="-2502.7" font-family="Times,serif" font-size="16.00">of 0.42s (3.16%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26 --> | |
| <g id="node26" class="node"><title>N26</title> | |
| <g id="a_node26"><a xlink:title="content::BrowserThread::PostTask (0.26s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="1034,-515 957,-515 957,-471 1034,-471 1034,-515"/> | |
| <text text-anchor="middle" x="995.5" y="-504.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="995.5" y="-495.6" font-family="Times,serif" font-size="8.00">BrowserThread</text> | |
| <text text-anchor="middle" x="995.5" y="-486.6" font-family="Times,serif" font-size="8.00">PostTask</text> | |
| <text text-anchor="middle" x="995.5" y="-477.6" font-family="Times,serif" font-size="8.00">0 of 0.26s (1.95%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N26 --> | |
| <g id="edge75" class="edge"><title>N18->N26</title> | |
| <g id="a_edge75"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers -> content::BrowserThread::PostTask (0.11s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M1431.92,-2493.45C1384.54,-2465.45 1336.5,-2430.61 1336.5,-2404.5 1336.5,-2404.5 1336.5,-2404.5 1336.5,-1480.5 1336.5,-1395.36 1356.64,-1361.22 1308.5,-1291 1282.5,-1253.08 1246.05,-1276.81 1218.5,-1240 1032.53,-991.509 1208.26,-832.4 1059.5,-560 1058.84,-558.79 1040.23,-539.638 1023.24,-522.276"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1025.62,-519.7 1016.12,-515.003 1020.62,-524.597 1025.62,-519.7"/> | |
| </a> | |
| </g> | |
| <g id="a_edge75-label"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers -> content::BrowserThread::PostTask (0.11s)"> | |
| <text text-anchor="middle" x="1353.5" y="-1618.3" font-family="Times,serif" font-size="14.00"> 0.11s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N73 --> | |
| <g id="node73" class="node"><title>N73</title> | |
| <g id="a_node73"><a xlink:title="content_settings::CookieSettings::GetCookieSetting (0.06s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="1574,-2440 1473,-2440 1473,-2367 1574,-2367 1574,-2440"/> | |
| <text text-anchor="middle" x="1523.5" y="-2426.4" font-family="Times,serif" font-size="12.00">content_settings</text> | |
| <text text-anchor="middle" x="1523.5" y="-2413.4" font-family="Times,serif" font-size="12.00">CookieSettings</text> | |
| <text text-anchor="middle" x="1523.5" y="-2400.4" font-family="Times,serif" font-size="12.00">GetCookieSetting</text> | |
| <text text-anchor="middle" x="1523.5" y="-2387.4" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="1523.5" y="-2374.4" font-family="Times,serif" font-size="12.00">of 0.06s (0.45%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N18->N73 --> | |
| <g id="edge85" class="edge"><title>N18->N73</title> | |
| <g id="a_edge85"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers ... content_settings::CookieSettings::GetCookieSetting (0.06s)"> | |
| <path fill="none" stroke="#b2b1ae" stroke-dasharray="1,5" d="M1523.5,-2493.2C1523.5,-2479.32 1523.5,-2464.24 1523.5,-2450.51"/> | |
| <polygon fill="#b2b1ae" stroke="#b2b1ae" points="1527,-2450.31 1523.5,-2440.31 1520,-2450.31 1527,-2450.31"/> | |
| </a> | |
| </g> | |
| <g id="a_edge85-label"><a xlink:title="content::ResourceDispatcherHostImpl::AddStandardHandlers ... content_settings::CookieSettings::GetCookieSetting (0.06s)"> | |
| <text text-anchor="middle" x="1540.5" y="-2461.8" font-family="Times,serif" font-size="14.00"> 0.06s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N19 --> | |
| <g id="node19" class="node"><title>N19</title> | |
| <g id="a_node19"><a xlink:title="content::MojoAsyncResourceHandler::OnWillRead (0.38s)"> | |
| <polygon fill="#edebe9" stroke="#b2a999" points="860.5,-814 612.5,-814 612.5,-718 860.5,-718 860.5,-814"/> | |
| <text text-anchor="middle" x="736.5" y="-794" font-family="Times,serif" font-size="20.00">content</text> | |
| <text text-anchor="middle" x="736.5" y="-772" font-family="Times,serif" font-size="20.00">MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="736.5" y="-750" font-family="Times,serif" font-size="20.00">OnWillRead</text> | |
| <text text-anchor="middle" x="736.5" y="-728" font-family="Times,serif" font-size="20.00">0.38s (2.85%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33 --> | |
| <g id="node33" class="node"><title>N33</title> | |
| <g id="a_node33"><a xlink:title="content::ThrottlingResourceHandler::OnWillStart (0.28s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="1145,-2594 944,-2594 944,-2491 1145,-2491 1145,-2594"/> | |
| <text text-anchor="middle" x="1044.5" y="-2576.4" font-family="Times,serif" font-size="17.00">content</text> | |
| <text text-anchor="middle" x="1044.5" y="-2557.4" font-family="Times,serif" font-size="17.00">ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="1044.5" y="-2538.4" font-family="Times,serif" font-size="17.00">OnWillStart</text> | |
| <text text-anchor="middle" x="1044.5" y="-2519.4" font-family="Times,serif" font-size="17.00">0.20s (1.50%)</text> | |
| <text text-anchor="middle" x="1044.5" y="-2500.4" font-family="Times,serif" font-size="17.00">of 0.28s (2.10%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N33 --> | |
| <g id="edge44" class="edge"><title>N20->N33</title> | |
| <g id="a_edge44"><a xlink:title="content::ResourceLoader::StartRequest -> content::ThrottlingResourceHandler::OnWillStart (0.28s)"> | |
| <path fill="none" stroke="#b2ac9f" d="M1037.79,-2654.29C1038.61,-2640.64 1039.73,-2622.16 1040.82,-2604.19"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="1044.33,-2604.21 1041.44,-2594.01 1037.34,-2603.78 1044.33,-2604.21"/> | |
| </a> | |
| </g> | |
| <g id="a_edge44-label"><a xlink:title="content::ResourceLoader::StartRequest -> content::ThrottlingResourceHandler::OnWillStart (0.28s)"> | |
| <text text-anchor="middle" x="1057.5" y="-2615.8" font-family="Times,serif" font-size="14.00"> 0.28s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35 --> | |
| <g id="node35" class="node"><title>N35</title> | |
| <g id="a_node35"><a xlink:title="net::URLRequest::Start (0.51s)"> | |
| <polygon fill="#edebe8" stroke="#b2a590" points="849,-2564.5 772,-2564.5 772,-2520.5 849,-2520.5 849,-2564.5"/> | |
| <text text-anchor="middle" x="810.5" y="-2554.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="810.5" y="-2545.1" font-family="Times,serif" font-size="8.00">URLRequest</text> | |
| <text text-anchor="middle" x="810.5" y="-2536.1" font-family="Times,serif" font-size="8.00">Start</text> | |
| <text text-anchor="middle" x="810.5" y="-2527.1" font-family="Times,serif" font-size="8.00">0 of 0.51s (3.83%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N20->N35 --> | |
| <g id="edge32" class="edge"><title>N20->N35</title> | |
| <g id="a_edge32"><a xlink:title="content::ResourceLoader::StartRequest ... net::URLRequest::Start (0.51s)"> | |
| <path fill="none" stroke="#b2a590" stroke-dasharray="1,5" d="M1000.44,-2654.44C961.115,-2631.47 898.115,-2594.67 855.56,-2569.82"/> | |
| <polygon fill="#b2a590" stroke="#b2a590" points="857.206,-2566.73 846.806,-2564.71 853.676,-2572.77 857.206,-2566.73"/> | |
| </a> | |
| </g> | |
| <g id="a_edge32-label"><a xlink:title="content::ResourceLoader::StartRequest ... net::URLRequest::Start (0.51s)"> | |
| <text text-anchor="middle" x="967.5" y="-2615.8" font-family="Times,serif" font-size="14.00"> 0.51s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21 --> | |
| <g id="node21" class="node"><title>N21</title> | |
| <g id="a_node21"><a xlink:title="content::ResourceLoader::CompleteResponseStarted (1.13s)"> | |
| <polygon fill="#ede8e3" stroke="#b28e66" points="541,-1219 440,-1219 440,-1175 541,-1175 541,-1219"/> | |
| <text text-anchor="middle" x="490.5" y="-1208.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="490.5" y="-1199.6" font-family="Times,serif" font-size="8.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="490.5" y="-1190.6" font-family="Times,serif" font-size="8.00">CompleteResponseStarted</text> | |
| <text text-anchor="middle" x="490.5" y="-1181.6" font-family="Times,serif" font-size="8.00">0 of 1.13s (8.49%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N4 --> | |
| <g id="edge18" class="edge"><title>N21->N4</title> | |
| <g id="a_edge18"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ResourceLoader::PrepareToReadMore (0.95s)"> | |
| <path fill="none" stroke="#b29572" d="M483.23,-1174.77C474.787,-1150.12 460.786,-1109.23 451.124,-1081.02"/> | |
| <polygon fill="#b29572" stroke="#b29572" points="454.33,-1079.58 447.779,-1071.26 447.708,-1081.85 454.33,-1079.58"/> | |
| </a> | |
| </g> | |
| <g id="a_edge18-label"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ResourceLoader::PrepareToReadMore (0.95s)"> | |
| <text text-anchor="middle" x="485.5" y="-1124.8" font-family="Times,serif" font-size="14.00"> 0.95s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N26 --> | |
| <g id="edge100" class="edge"><title>N21->N26</title> | |
| <g id="a_edge100"><a xlink:title="content::ResourceLoader::CompleteResponseStarted ... content::BrowserThread::PostTask (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" stroke-dasharray="1,5" d="M527.72,-1174.81C540.99,-1167.69 556.195,-1160.04 570.5,-1154 707.475,-1096.13 888.5,-1198.7 888.5,-1050 888.5,-1050 888.5,-1050 888.5,-839.5 888.5,-784.405 879.535,-771.174 869.5,-717 865.277,-694.2 860.958,-689.057 858.5,-666 855.06,-633.738 843.733,-621.889 858.5,-593 877.099,-556.614 916.001,-530.52 947.615,-514.287"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="949.33,-517.343 956.737,-509.767 946.223,-511.07 949.33,-517.343"/> | |
| </a> | |
| </g> | |
| <g id="a_edge100-label"><a xlink:title="content::ResourceLoader::CompleteResponseStarted ... content::BrowserThread::PostTask (0.01s)"> | |
| <text text-anchor="middle" x="905.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76 --> | |
| <g id="node76" class="node"><title>N76</title> | |
| <g id="a_node76"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted (0.16s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="216,-1071 111,-1071 111,-1027 216,-1027 216,-1071"/> | |
| <text text-anchor="middle" x="163.5" y="-1060.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="163.5" y="-1051.6" font-family="Times,serif" font-size="8.00">ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="163.5" y="-1042.6" font-family="Times,serif" font-size="8.00">OnResponseStarted</text> | |
| <text text-anchor="middle" x="163.5" y="-1033.6" font-family="Times,serif" font-size="8.00">0 of 0.16s (1.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N21->N76 --> | |
| <g id="edge63" class="edge"><title>N21->N76</title> | |
| <g id="a_edge63"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ThrottlingResourceHandler::OnResponseStarted (0.16s)"> | |
| <path fill="none" stroke="#b2afa7" d="M443.301,-1174.93C384.251,-1148.56 283.24,-1103.46 220.099,-1075.27"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="221.243,-1071.95 210.685,-1071.07 218.389,-1078.34 221.243,-1071.95"/> | |
| </a> | |
| </g> | |
| <g id="a_edge63-label"><a xlink:title="content::ResourceLoader::CompleteResponseStarted -> content::ThrottlingResourceHandler::OnResponseStarted (0.16s)"> | |
| <text text-anchor="middle" x="364.5" y="-1124.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22->N21 --> | |
| <g id="edge17" class="edge"><title>N22->N21</title> | |
| <g id="a_edge17"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete ... content::ResourceLoader::CompleteResponseStarted (1.13s)"> | |
| <path fill="none" stroke="#b28e66" stroke-dasharray="1,5" d="M643.206,-1315.31C633.583,-1307.61 622.583,-1298.87 612.5,-1291 583.948,-1268.73 551.31,-1243.88 526.98,-1225.47"/> | |
| <polygon fill="#b28e66" stroke="#b28e66" points="528.83,-1222.48 518.742,-1219.25 524.609,-1228.07 528.83,-1222.48"/> | |
| </a> | |
| </g> | |
| <g id="a_edge17-label"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete ... content::ResourceLoader::CompleteResponseStarted (1.13s)"> | |
| <text text-anchor="middle" x="603.5" y="-1261.8" font-family="Times,serif" font-size="14.00"> 1.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29 --> | |
| <g id="node29" class="node"><title>N29</title> | |
| <g id="a_node29"><a xlink:title="net::NetworkDelegate::NotifyNetworkBytesReceived (0.19s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="759.5,-1236 579.5,-1236 579.5,-1158 759.5,-1158 759.5,-1236"/> | |
| <text text-anchor="middle" x="669.5" y="-1221.6" font-family="Times,serif" font-size="13.00">net</text> | |
| <text text-anchor="middle" x="669.5" y="-1207.6" font-family="Times,serif" font-size="13.00">NetworkDelegate</text> | |
| <text text-anchor="middle" x="669.5" y="-1193.6" font-family="Times,serif" font-size="13.00">NotifyNetworkBytesReceived</text> | |
| <text text-anchor="middle" x="669.5" y="-1179.6" font-family="Times,serif" font-size="13.00">0.06s (0.45%)</text> | |
| <text text-anchor="middle" x="669.5" y="-1165.6" font-family="Times,serif" font-size="13.00">of 0.19s (1.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N22->N29 --> | |
| <g id="edge69" class="edge"><title>N22->N29</title> | |
| <g id="a_edge69"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete -> net::NetworkDelegate::NotifyNetworkBytesReceived (0.15s)"> | |
| <path fill="none" stroke="#b2afa8" d="M669.5,-1315.46C669.5,-1297.21 669.5,-1270.07 669.5,-1246.47"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="673,-1246.27 669.5,-1236.27 666,-1246.27 673,-1246.27"/> | |
| </a> | |
| </g> | |
| <g id="a_edge69-label"><a xlink:title="net::URLRequestJob::NotifyHeadersComplete -> net::NetworkDelegate::NotifyNetworkBytesReceived (0.15s)"> | |
| <text text-anchor="middle" x="686.5" y="-1261.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23 --> | |
| <g id="node23" class="node"><title>N23</title> | |
| <g id="a_node23"><a xlink:title="content::ResourceLoader::~ResourceLoader (0.58s)"> | |
| <polygon fill="#edebe7" stroke="#b2a38b" points="365.5,-524.5 277.5,-524.5 277.5,-461.5 365.5,-461.5 365.5,-524.5"/> | |
| <text text-anchor="middle" x="321.5" y="-512.5" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="321.5" y="-501.5" font-family="Times,serif" font-size="10.00">ResourceLoader</text> | |
| <text text-anchor="middle" x="321.5" y="-490.5" font-family="Times,serif" font-size="10.00">~ResourceLoader</text> | |
| <text text-anchor="middle" x="321.5" y="-479.5" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="321.5" y="-468.5" font-family="Times,serif" font-size="10.00">of 0.58s (4.36%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37 --> | |
| <g id="node37" class="node"><title>N37</title> | |
| <g id="a_node37"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.20s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="238.5,-373 94.5,-373 94.5,-305 238.5,-305 238.5,-373"/> | |
| <text text-anchor="middle" x="166.5" y="-360.2" font-family="Times,serif" font-size="11.00">content</text> | |
| <text text-anchor="middle" x="166.5" y="-348.2" font-family="Times,serif" font-size="11.00">ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="166.5" y="-336.2" font-family="Times,serif" font-size="11.00">~ThrottlingResourceHandler</text> | |
| <text text-anchor="middle" x="166.5" y="-324.2" font-family="Times,serif" font-size="11.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="166.5" y="-312.2" font-family="Times,serif" font-size="11.00">of 0.20s (1.50%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N37 --> | |
| <g id="edge54" class="edge"><title>N23->N37</title> | |
| <g id="a_edge54"><a xlink:title="content::ResourceLoader::~ResourceLoader -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.20s)"> | |
| <path fill="none" stroke="#b2aea5" d="M290.133,-461.241C266.382,-437.949 233.542,-405.745 207.677,-380.38"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="209.828,-377.587 200.237,-373.084 204.926,-382.585 209.828,-377.587"/> | |
| </a> | |
| </g> | |
| <g id="a_edge54-label"><a xlink:title="content::ResourceLoader::~ResourceLoader -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.20s)"> | |
| <text text-anchor="middle" x="270.5" y="-414.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="net::URLRequest::~URLRequest (0.37s)"> | |
| <polygon fill="#edece9" stroke="#b2aa99" points="369.5,-375.5 273.5,-375.5 273.5,-302.5 369.5,-302.5 369.5,-375.5"/> | |
| <text text-anchor="middle" x="321.5" y="-361.9" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="321.5" y="-348.9" font-family="Times,serif" font-size="12.00">URLRequest</text> | |
| <text text-anchor="middle" x="321.5" y="-335.9" font-family="Times,serif" font-size="12.00">~URLRequest</text> | |
| <text text-anchor="middle" x="321.5" y="-322.9" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="321.5" y="-309.9" font-family="Times,serif" font-size="12.00">of 0.37s (2.78%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N23->N46 --> | |
| <g id="edge39" class="edge"><title>N23->N46</title> | |
| <g id="a_edge39"><a xlink:title="content::ResourceLoader::~ResourceLoader -> net::URLRequest::~URLRequest (0.37s)"> | |
| <path fill="none" stroke="#b2aa99" d="M321.5,-461.241C321.5,-439.532 321.5,-410.08 321.5,-385.641"/> | |
| <polygon fill="#b2aa99" stroke="#b2aa99" points="325,-385.511 321.5,-375.511 318,-385.511 325,-385.511"/> | |
| </a> | |
| </g> | |
| <g id="a_edge39-label"><a xlink:title="content::ResourceLoader::~ResourceLoader -> net::URLRequest::~URLRequest (0.37s)"> | |
| <text text-anchor="middle" x="338.5" y="-414.8" font-family="Times,serif" font-size="14.00"> 0.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N24 --> | |
| <g id="node24" class="node"><title>N24</title> | |
| <g id="a_node24"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL (0.29s)"> | |
| <polygon fill="#edecea" stroke="#b2ac9f" points="1502,-1103 1305,-1103 1305,-995 1502,-995 1502,-1103"/> | |
| <text text-anchor="middle" x="1403.5" y="-1084.6" font-family="Times,serif" font-size="18.00">content</text> | |
| <text text-anchor="middle" x="1403.5" y="-1064.6" font-family="Times,serif" font-size="18.00">(anonymous namespace)</text> | |
| <text text-anchor="middle" x="1403.5" y="-1044.6" font-family="Times,serif" font-size="18.00">ProxyResolverMojo</text> | |
| <text text-anchor="middle" x="1403.5" y="-1024.6" font-family="Times,serif" font-size="18.00">GetProxyForURL</text> | |
| <text text-anchor="middle" x="1403.5" y="-1004.6" font-family="Times,serif" font-size="18.00">0.29s (2.18%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N18 --> | |
| <g id="edge34" class="edge"><title>N25->N18</title> | |
| <g id="a_edge34"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler -> content::ResourceDispatcherHostImpl::AddStandardHandlers (0.42s)"> | |
| <path fill="none" stroke="#b2a896" d="M1353.76,-2644.88C1377.69,-2630.59 1406.89,-2613.15 1434.27,-2596.8"/> | |
| <polygon fill="#b2a896" stroke="#b2a896" points="1436.3,-2599.66 1443.09,-2591.53 1432.71,-2593.65 1436.3,-2599.66"/> | |
| </a> | |
| </g> | |
| <g id="a_edge34-label"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler -> content::ResourceDispatcherHostImpl::AddStandardHandlers (0.42s)"> | |
| <text text-anchor="middle" x="1422.5" y="-2615.8" font-family="Times,serif" font-size="14.00"> 0.42s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N39 --> | |
| <g id="node39" class="node"><title>N39</title> | |
| <g id="a_node39"><a xlink:title="content::MojoAsyncResourceHandler::MojoAsyncResourceHandler (0.15s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="1403.5,-2582.5 1201.5,-2582.5 1201.5,-2502.5 1403.5,-2502.5 1403.5,-2582.5"/> | |
| <text text-anchor="middle" x="1302.5" y="-2565.7" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="1302.5" y="-2547.7" font-family="Times,serif" font-size="16.00">MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="1302.5" y="-2529.7" font-family="Times,serif" font-size="16.00">MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="1302.5" y="-2511.7" font-family="Times,serif" font-size="16.00">0.15s (1.13%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N25->N39 --> | |
| <g id="edge68" class="edge"><title>N25->N39</title> | |
| <g id="a_edge68"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler ... content::MojoAsyncResourceHandler::MojoAsyncResourceHandler (0.15s)"> | |
| <path fill="none" stroke="#b2afa8" stroke-dasharray="1,5" d="M1302.5,-2644.88C1302.5,-2629.48 1302.5,-2610.42 1302.5,-2593"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="1306,-2592.97 1302.5,-2582.97 1299,-2592.97 1306,-2592.97"/> | |
| </a> | |
| </g> | |
| <g id="a_edge68-label"><a xlink:title="content::ResourceDispatcherHostImpl::CreateResourceHandler ... content::MojoAsyncResourceHandler::MojoAsyncResourceHandler (0.15s)"> | |
| <text text-anchor="middle" x="1319.5" y="-2615.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N26->N14 --> | |
| <g id="edge45" class="edge"><title>N26->N14</title> | |
| <g id="a_edge45"><a xlink:title="content::BrowserThread::PostTask -> content::BrowserThreadImpl::PostTaskHelper (0.26s)"> | |
| <path fill="none" stroke="#b2ada1" d="M1003.01,-470.865C1009.3,-453.15 1018.62,-426.918 1027.27,-402.582"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="1030.62,-403.61 1030.67,-393.016 1024.02,-401.267 1030.62,-403.61"/> | |
| </a> | |
| </g> | |
| <g id="a_edge45-label"><a xlink:title="content::BrowserThread::PostTask -> content::BrowserThreadImpl::PostTaskHelper (0.26s)"> | |
| <text text-anchor="middle" x="1041.5" y="-414.8" font-family="Times,serif" font-size="14.00"> 0.26s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N8 --> | |
| <g id="edge13" class="edge"><title>N27->N8</title> | |
| <g id="a_edge13"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept ... content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest (1.50s)"> | |
| <path fill="none" stroke="#b27e4d" stroke-dasharray="1,5" d="M1036.5,-2902.72C1036.5,-2886.15 1036.5,-2867.05 1036.5,-2849.93"/> | |
| <polygon fill="#b27e4d" stroke="#b27e4d" points="1040,-2849.57 1036.5,-2839.57 1033,-2849.57 1040,-2849.57"/> | |
| </a> | |
| </g> | |
| <g id="a_edge13-label"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept ... content::ResourceDispatcherHostImpl::ContinuePendingBeginRequest (1.50s)"> | |
| <text text-anchor="middle" x="1053.5" y="-2863.8" font-family="Times,serif" font-size="14.00"> 1.50s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N27->N62 --> | |
| <g id="edge101" class="edge"><title>N27->N62</title> | |
| <g id="a_edge101"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept -> net::HttpRequestHeaders::SetHeaderInternal (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M1124.25,-2933.66C1294.59,-2910.45 1653.5,-2855.18 1653.5,-2801.5 1653.5,-2801.5 1653.5,-2801.5 1653.5,-2618.5 1653.5,-2217.43 1440.53,-2162.31 1322.5,-1779 1279.27,-1638.59 1256.26,-1465.39 1247.19,-1384.36"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1250.62,-1383.57 1246.05,-1374.01 1243.66,-1384.33 1250.62,-1383.57"/> | |
| </a> | |
| </g> | |
| <g id="a_edge101-label"><a xlink:title="content::mojom::URLLoaderFactoryStubDispatch::Accept -> net::HttpRequestHeaders::SetHeaderInternal (0.01s)"> | |
| <text text-anchor="middle" x="1500.5" y="-2104.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N28 --> | |
| <g id="node28" class="node"><title>N28</title> | |
| <g id="a_node28"><a xlink:title="content::MojoAsyncResourceHandler::WriterIOBuffer::~WriterIOBuffer (0.20s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="441.5,-103 229.5,-103 229.5,-0 441.5,-0 441.5,-103"/> | |
| <text text-anchor="middle" x="335.5" y="-85.4" font-family="Times,serif" font-size="17.00">content</text> | |
| <text text-anchor="middle" x="335.5" y="-66.4" font-family="Times,serif" font-size="17.00">MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="335.5" y="-47.4" font-family="Times,serif" font-size="17.00">WriterIOBuffer</text> | |
| <text text-anchor="middle" x="335.5" y="-28.4" font-family="Times,serif" font-size="17.00">~WriterIOBuffer</text> | |
| <text text-anchor="middle" x="335.5" y="-9.4" font-family="Times,serif" font-size="17.00">0.20s (1.50%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N29->N52 --> | |
| <g id="edge84" class="edge"><title>N29->N52</title> | |
| <g id="a_edge84"><a xlink:title="net::NetworkDelegate::NotifyNetworkBytesReceived -> content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.07s)"> | |
| <path fill="none" stroke="#b2b1ad" d="M759.773,-1192.92C807.593,-1186.76 864.19,-1171.63 902.5,-1136 1083.71,-967.464 1104.04,-638.637 1105.65,-529.88"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1109.15,-529.796 1105.75,-519.761 1102.15,-529.725 1109.15,-529.796"/> | |
| </a> | |
| </g> | |
| <g id="a_edge84-label"><a xlink:title="net::NetworkDelegate::NotifyNetworkBytesReceived -> content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.07s)"> | |
| <text text-anchor="middle" x="1082.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68 --> | |
| <g id="node68" class="node"><title>N68</title> | |
| <g id="a_node68"><a xlink:title="net::NetworkDelegate::NotifyCompleted (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="595,-797.5 506,-797.5 506,-734.5 595,-734.5 595,-797.5"/> | |
| <text text-anchor="middle" x="550.5" y="-785.5" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="550.5" y="-774.5" font-family="Times,serif" font-size="10.00">NetworkDelegate</text> | |
| <text text-anchor="middle" x="550.5" y="-763.5" font-family="Times,serif" font-size="10.00">NotifyCompleted</text> | |
| <text text-anchor="middle" x="550.5" y="-752.5" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="550.5" y="-741.5" font-family="Times,serif" font-size="10.00">of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N68 --> | |
| <g id="edge60" class="edge"><title>N30->N68</title> | |
| <g id="a_edge60"><a xlink:title="net::URLRequest::Read -> net::NetworkDelegate::NotifyCompleted (0.18s)"> | |
| <path fill="none" stroke="#b2afa6" d="M529.351,-882.894C533.011,-862.839 538.61,-832.155 543.128,-807.396"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="546.574,-808.009 544.926,-797.543 539.688,-806.752 546.574,-808.009"/> | |
| </a> | |
| </g> | |
| <g id="a_edge60-label"><a xlink:title="net::URLRequest::Read -> net::NetworkDelegate::NotifyCompleted (0.18s)"> | |
| <text text-anchor="middle" x="555.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72 --> | |
| <g id="node72" class="node"><title>N72</title> | |
| <g id="a_node72"><a xlink:title="net::URLRequestHttpJob::ReadRawData (0.19s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="488,-797.5 385,-797.5 385,-734.5 488,-734.5 488,-797.5"/> | |
| <text text-anchor="middle" x="436.5" y="-785.5" font-family="Times,serif" font-size="10.00">net</text> | |
| <text text-anchor="middle" x="436.5" y="-774.5" font-family="Times,serif" font-size="10.00">URLRequestHttpJob</text> | |
| <text text-anchor="middle" x="436.5" y="-763.5" font-family="Times,serif" font-size="10.00">ReadRawData</text> | |
| <text text-anchor="middle" x="436.5" y="-752.5" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="436.5" y="-741.5" font-family="Times,serif" font-size="10.00">of 0.19s (1.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N30->N72 --> | |
| <g id="edge57" class="edge"><title>N30->N72</title> | |
| <g id="a_edge57"><a xlink:title="net::URLRequest::Read ... net::URLRequestHttpJob::ReadRawData (0.19s)"> | |
| <path fill="none" stroke="#b2aea5" stroke-dasharray="1,5" d="M511.789,-882.894C498.529,-862.483 478.116,-831.06 461.888,-806.081"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="464.725,-804.022 456.342,-797.543 458.855,-807.836 464.725,-804.022"/> | |
| </a> | |
| </g> | |
| <g id="a_edge57-label"><a xlink:title="net::URLRequest::Read ... net::URLRequestHttpJob::ReadRawData (0.19s)"> | |
| <text text-anchor="middle" x="506.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31 --> | |
| <g id="node31" class="node"><title>N31</title> | |
| <g id="a_node31"><a xlink:title="content::BrowserMainLoop::RunMainMessageLoopParts (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="2200.5,-3168 2002.5,-3168 2002.5,-3070 2200.5,-3070 2200.5,-3168"/> | |
| <text text-anchor="middle" x="2101.5" y="-3151.2" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="2101.5" y="-3133.2" font-family="Times,serif" font-size="16.00">BrowserMainLoop</text> | |
| <text text-anchor="middle" x="2101.5" y="-3115.2" font-family="Times,serif" font-size="16.00">RunMainMessageLoopParts</text> | |
| <text text-anchor="middle" x="2101.5" y="-3097.2" font-family="Times,serif" font-size="16.00">0.16s (1.20%)</text> | |
| <text text-anchor="middle" x="2101.5" y="-3079.2" font-family="Times,serif" font-size="16.00">of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61 --> | |
| <g id="node61" class="node"><title>N61</title> | |
| <g id="a_node61"><a xlink:title="content::RenderFrameHostImpl::OnMessageReceived (0.17s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="2035,-2982.5 1910,-2982.5 1910,-2909.5 2035,-2909.5 2035,-2982.5"/> | |
| <text text-anchor="middle" x="1972.5" y="-2968.9" font-family="Times,serif" font-size="12.00">content</text> | |
| <text text-anchor="middle" x="1972.5" y="-2955.9" font-family="Times,serif" font-size="12.00">RenderFrameHostImpl</text> | |
| <text text-anchor="middle" x="1972.5" y="-2942.9" font-family="Times,serif" font-size="12.00">OnMessageReceived</text> | |
| <text text-anchor="middle" x="1972.5" y="-2929.9" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="1972.5" y="-2916.9" font-family="Times,serif" font-size="12.00">of 0.17s (1.28%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N61 --> | |
| <g id="edge91" class="edge"><title>N31->N61</title> | |
| <g id="a_edge91"><a xlink:title="content::BrowserMainLoop::RunMainMessageLoopParts -> content::RenderFrameHostImpl::OnMessageReceived (0.04s)"> | |
| <path fill="none" stroke="#b2b2af" d="M2065.22,-3069.91C2046.49,-3045.08 2023.8,-3015.01 2005.56,-2990.82"/> | |
| <polygon fill="#b2b2af" stroke="#b2b2af" points="2008.12,-2988.41 1999.3,-2982.53 2002.53,-2992.62 2008.12,-2988.41"/> | |
| </a> | |
| </g> | |
| <g id="a_edge91-label"><a xlink:title="content::BrowserMainLoop::RunMainMessageLoopParts -> content::RenderFrameHostImpl::OnMessageReceived (0.04s)"> | |
| <text text-anchor="middle" x="2049.5" y="-3020.8" font-family="Times,serif" font-size="14.00"> 0.04s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N64 --> | |
| <g id="node64" class="node"><title>N64</title> | |
| <g id="a_node64"><a xlink:title="content::WebContentsImpl::DidGetResourceResponseStart (0.07s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="2237.5,-2978 2053.5,-2978 2053.5,-2914 2237.5,-2914 2237.5,-2978"/> | |
| <text text-anchor="middle" x="2145.5" y="-2963.6" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="2145.5" y="-2949.6" font-family="Times,serif" font-size="13.00">WebContentsImpl</text> | |
| <text text-anchor="middle" x="2145.5" y="-2935.6" font-family="Times,serif" font-size="13.00">DidGetResourceResponseStart</text> | |
| <text text-anchor="middle" x="2145.5" y="-2921.6" font-family="Times,serif" font-size="13.00">0.07s (0.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N31->N64 --> | |
| <g id="edge96" class="edge"><title>N31->N64</title> | |
| <g id="a_edge96"><a xlink:title="content::BrowserMainLoop::RunMainMessageLoopParts -> content::WebContentsImpl::DidGetResourceResponseStart (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M2113.87,-3069.91C2120.53,-3044.04 2128.65,-3012.47 2135,-2987.81"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="2138.41,-2988.6 2137.51,-2978.04 2131.63,-2986.85 2138.41,-2988.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge96-label"><a xlink:title="content::BrowserMainLoop::RunMainMessageLoopParts -> content::WebContentsImpl::DidGetResourceResponseStart (0.01s)"> | |
| <text text-anchor="middle" x="2143.5" y="-3020.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N32 --> | |
| <g id="node32" class="node"><title>N32</title> | |
| <g id="a_node32"><a xlink:title="content::mojom::URLLoaderClientProxy::OnStartLoadingResponseBody (0.19s)"> | |
| <polygon fill="#edeceb" stroke="#b2aea5" points="259.5,-542 43.5,-542 43.5,-444 259.5,-444 259.5,-542"/> | |
| <text text-anchor="middle" x="151.5" y="-525.2" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="151.5" y="-507.2" font-family="Times,serif" font-size="16.00">mojom</text> | |
| <text text-anchor="middle" x="151.5" y="-489.2" font-family="Times,serif" font-size="16.00">URLLoaderClientProxy</text> | |
| <text text-anchor="middle" x="151.5" y="-471.2" font-family="Times,serif" font-size="16.00">OnStartLoadingResponseBody</text> | |
| <text text-anchor="middle" x="151.5" y="-453.2" font-family="Times,serif" font-size="16.00">0.19s (1.43%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N33->N54 --> | |
| <g id="edge92" class="edge"><title>N33->N54</title> | |
| <g id="a_edge92"><a xlink:title="content::ThrottlingResourceHandler::OnWillStart ... content::BrowserThread::CurrentlyOn (0.03s)"> | |
| <path fill="none" stroke="#b2b2b0" stroke-dasharray="1,5" d="M1075.17,-2490.88C1084.42,-2475.6 1094.45,-2459.05 1103.23,-2444.56"/> | |
| <polygon fill="#b2b2b0" stroke="#b2b2b0" points="1106.33,-2446.2 1108.51,-2435.84 1100.34,-2442.58 1106.33,-2446.2"/> | |
| </a> | |
| </g> | |
| <g id="a_edge92-label"><a xlink:title="content::ThrottlingResourceHandler::OnWillStart ... content::BrowserThread::CurrentlyOn (0.03s)"> | |
| <text text-anchor="middle" x="1110.5" y="-2461.8" font-family="Times,serif" font-size="14.00"> 0.03s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N5 --> | |
| <g id="edge105" class="edge"><title>N34->N5</title> | |
| <g id="a_edge105"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::HttpNetworkTransaction::OnIOComplete (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M627.578,-1924.71C610.953,-1912.2 592.591,-1894.76 583.5,-1874 575.657,-1856.09 575.774,-1847.96 583.5,-1830 590.768,-1813.1 603.454,-1798.06 616.886,-1785.64"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="619.211,-1788.26 624.395,-1779.02 614.58,-1783.01 619.211,-1788.26"/> | |
| </a> | |
| </g> | |
| <g id="a_edge105-label"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::HttpNetworkTransaction::OnIOComplete (0.01s)"> | |
| <text text-anchor="middle" x="600.5" y="-1848.3" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N11 --> | |
| <g id="edge27" class="edge"><title>N34->N11</title> | |
| <g id="a_edge27"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::SpdyHttpStream::DoResponseCallback (0.76s)"> | |
| <path fill="none" stroke="#b29c7f" d="M663.315,-1924.9C664.348,-1912.89 665.662,-1897.62 666.813,-1884.24"/> | |
| <polygon fill="#b29c7f" stroke="#b29c7f" points="670.322,-1884.28 667.692,-1874.02 663.348,-1883.68 670.322,-1884.28"/> | |
| </a> | |
| </g> | |
| <g id="a_edge27-label"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::SpdyHttpStream::DoResponseCallback (0.76s)"> | |
| <text text-anchor="middle" x="683.5" y="-1895.8" font-family="Times,serif" font-size="14.00"> 0.76s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N34->N41 --> | |
| <g id="edge90" class="edge"><title>N34->N41</title> | |
| <g id="a_edge90"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::SpdyHttpStream::ReadResponseBody (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" d="M614.338,-1924.79C606.102,-1919.74 598.079,-1913.8 591.5,-1907 580.026,-1895.15 578.387,-1890.03 574.5,-1874 557.732,-1804.84 567.058,-1778.82 600.5,-1716 609.956,-1698.24 613.832,-1692.63 631.5,-1683 670.381,-1661.8 696.596,-1694.64 729.5,-1665 770.915,-1627.69 803.43,-1468.02 817.667,-1386.62"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="821.141,-1387.07 819.393,-1376.62 814.243,-1385.88 821.141,-1387.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge90-label"><a xlink:title="net::SpdyHttpStream::DoBufferedReadCallback -> net::SpdyHttpStream::ReadResponseBody (0.05s)"> | |
| <text text-anchor="middle" x="648.5" y="-1686.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N26 --> | |
| <g id="edge81" class="edge"><title>N35->N26</title> | |
| <g id="a_edge81"><a xlink:title="net::URLRequest::Start ... content::BrowserThread::PostTask (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M833.55,-2520.36C844.992,-2510.58 859.366,-2499.32 873.5,-2491 891.708,-2480.28 898.26,-2481.73 917.5,-2473 931.075,-2466.84 933.925,-2464.16 947.5,-2458 966.74,-2449.27 978.092,-2456.33 991.5,-2440 1019.52,-2405.88 1010.5,-2386.65 1010.5,-2342.5 1010.5,-2342.5 1010.5,-2342.5 1010.5,-2107.5 1010.5,-2013.96 972.5,-1994.04 972.5,-1900.5 972.5,-1900.5 972.5,-1900.5 972.5,-1689.5 972.5,-1617.58 966.34,-1599.81 962.5,-1528 959.507,-1472.04 956.239,-1458.03 957.5,-1402 958.611,-1352.63 955.879,-1339.94 962.5,-1291 982.088,-1146.23 1035.5,-1116.59 1035.5,-970.5 1035.5,-970.5 1035.5,-970.5 1035.5,-628.5 1035.5,-591.615 1021.51,-551.313 1010.08,-524.538"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1013.25,-523.055 1006.01,-515.317 1006.84,-525.879 1013.25,-523.055"/> | |
| </a> | |
| </g> | |
| <g id="a_edge81-label"><a xlink:title="net::URLRequest::Start ... content::BrowserThread::PostTask (0.08s)"> | |
| <text text-anchor="middle" x="989.5" y="-1618.3" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45 --> | |
| <g id="node45" class="node"><title>N45</title> | |
| <g id="a_node45"><a xlink:title="net::URLRequestHttpJob::Start (0.37s)"> | |
| <polygon fill="#edece9" stroke="#b2aa99" points="982.5,-2437.5 872.5,-2437.5 872.5,-2369.5 982.5,-2369.5 982.5,-2437.5"/> | |
| <text text-anchor="middle" x="927.5" y="-2424.7" font-family="Times,serif" font-size="11.00">net</text> | |
| <text text-anchor="middle" x="927.5" y="-2412.7" font-family="Times,serif" font-size="11.00">URLRequestHttpJob</text> | |
| <text text-anchor="middle" x="927.5" y="-2400.7" font-family="Times,serif" font-size="11.00">Start</text> | |
| <text text-anchor="middle" x="927.5" y="-2388.7" font-family="Times,serif" font-size="11.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="927.5" y="-2376.7" font-family="Times,serif" font-size="11.00">of 0.37s (2.78%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N35->N45 --> | |
| <g id="edge40" class="edge"><title>N35->N45</title> | |
| <g id="a_edge40"><a xlink:title="net::URLRequest::Start ... net::URLRequestHttpJob::Start (0.37s)"> | |
| <path fill="none" stroke="#b2aa99" stroke-dasharray="1,5" d="M828.525,-2520.39C845.53,-2500.48 871.485,-2470.09 892.55,-2445.42"/> | |
| <polygon fill="#b2aa99" stroke="#b2aa99" points="895.367,-2447.52 899.2,-2437.64 890.044,-2442.97 895.367,-2447.52"/> | |
| </a> | |
| </g> | |
| <g id="a_edge40-label"><a xlink:title="net::URLRequest::Start ... net::URLRequestHttpJob::Start (0.37s)"> | |
| <text text-anchor="middle" x="896.5" y="-2461.8" font-family="Times,serif" font-size="14.00"> 0.37s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N15 --> | |
| <g id="edge12" class="edge"><title>N36->N15</title> | |
| <g id="a_edge12"><a xlink:title="net::DataPayloadDecoder::StartDecodingPayload -> net::Http2DecoderAdapter::OnDataEnd (1.55s)"> | |
| <path fill="none" stroke="#b27b4a" d="M670.5,-2381.41C670.5,-2362.84 670.5,-2335.53 670.5,-2314.4"/> | |
| <polygon fill="#b27b4a" stroke="#b27b4a" points="674,-2314.28 670.5,-2304.28 667,-2314.28 674,-2314.28"/> | |
| </a> | |
| </g> | |
| <g id="a_edge12-label"><a xlink:title="net::DataPayloadDecoder::StartDecodingPayload -> net::Http2DecoderAdapter::OnDataEnd (1.55s)"> | |
| <text text-anchor="middle" x="687.5" y="-2337.8" font-family="Times,serif" font-size="14.00"> 1.55s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70 --> | |
| <g id="node70" class="node"><title>N70</title> | |
| <g id="a_node70"><a xlink:title="net::SpdySession::OnStreamFrameData (0.06s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ae" points="607.5,-2316 495.5,-2316 495.5,-2248 607.5,-2248 607.5,-2316"/> | |
| <text text-anchor="middle" x="551.5" y="-2303.2" font-family="Times,serif" font-size="11.00">net</text> | |
| <text text-anchor="middle" x="551.5" y="-2291.2" font-family="Times,serif" font-size="11.00">SpdySession</text> | |
| <text text-anchor="middle" x="551.5" y="-2279.2" font-family="Times,serif" font-size="11.00">OnStreamFrameData</text> | |
| <text text-anchor="middle" x="551.5" y="-2267.2" font-family="Times,serif" font-size="11.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="551.5" y="-2255.2" font-family="Times,serif" font-size="11.00">of 0.06s (0.45%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N36->N70 --> | |
| <g id="edge89" class="edge"><title>N36->N70</title> | |
| <g id="a_edge89"><a xlink:title="net::DataPayloadDecoder::StartDecodingPayload -> net::SpdySession::OnStreamFrameData (0.05s)"> | |
| <path fill="none" stroke="#b2b1af" d="M641.68,-2381.38C633.778,-2376.2 625.031,-2371 616.5,-2367 591.682,-2355.35 574.795,-2370.27 557.5,-2349 552.236,-2342.53 549.473,-2334.42 548.217,-2326.14"/> | |
| <polygon fill="#b2b1af" stroke="#b2b1af" points="551.692,-2325.7 547.364,-2316.03 544.717,-2326.29 551.692,-2325.7"/> | |
| </a> | |
| </g> | |
| <g id="a_edge89-label"><a xlink:title="net::DataPayloadDecoder::StartDecodingPayload -> net::SpdySession::OnStreamFrameData (0.05s)"> | |
| <text text-anchor="middle" x="574.5" y="-2337.8" font-family="Times,serif" font-size="14.00"> 0.05s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59 --> | |
| <g id="node59" class="node"><title>N59</title> | |
| <g id="a_node59"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler (0.18s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa6" points="161.5,-216 57.5,-216 57.5,-172 161.5,-172 161.5,-216"/> | |
| <text text-anchor="middle" x="109.5" y="-205.6" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="109.5" y="-196.6" font-family="Times,serif" font-size="8.00">LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="109.5" y="-187.6" font-family="Times,serif" font-size="8.00">~LayeredResourceHandler</text> | |
| <text text-anchor="middle" x="109.5" y="-178.6" font-family="Times,serif" font-size="8.00">0 of 0.18s (1.35%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N37->N59 --> | |
| <g id="edge59" class="edge"><title>N37->N59</title> | |
| <g id="a_edge59"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler -> content::LayeredResourceHandler::~LayeredResourceHandler (0.18s)"> | |
| <path fill="none" stroke="#b2afa6" d="M160.486,-304.982C156.908,-288.658 151.651,-268.888 144.5,-252 140.568,-242.714 135.276,-233.17 130,-224.61"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="132.897,-222.643 124.565,-216.099 126.997,-226.411 132.897,-222.643"/> | |
| </a> | |
| </g> | |
| <g id="a_edge59-label"><a xlink:title="content::ThrottlingResourceHandler::~ThrottlingResourceHandler -> content::LayeredResourceHandler::~LayeredResourceHandler (0.18s)"> | |
| <text text-anchor="middle" x="167.5" y="-255.8" font-family="Times,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N40 --> | |
| <g id="node40" class="node"><title>N40</title> | |
| <g id="a_node40"><a xlink:title="content::MojoAsyncResourceHandler::~MojoAsyncResourceHandler (0.15s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa8" points="211,-91.5 0,-91.5 0,-11.5 211,-11.5 211,-91.5"/> | |
| <text text-anchor="middle" x="105.5" y="-74.7" font-family="Times,serif" font-size="16.00">content</text> | |
| <text text-anchor="middle" x="105.5" y="-56.7" font-family="Times,serif" font-size="16.00">MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="105.5" y="-38.7" font-family="Times,serif" font-size="16.00">~MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="105.5" y="-20.7" font-family="Times,serif" font-size="16.00">0.15s (1.13%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42 --> | |
| <g id="node42" class="node"><title>N42</title> | |
| <g id="a_node42"><a xlink:title="content::RenderWidgetHostViewEventHandler::OnMouseEvent (0.17s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="2386.5,-3337.5 2210.5,-3337.5 2210.5,-3274.5 2386.5,-3274.5 2386.5,-3337.5"/> | |
| <text text-anchor="middle" x="2298.5" y="-3325.5" font-family="Times,serif" font-size="10.00">content</text> | |
| <text text-anchor="middle" x="2298.5" y="-3314.5" font-family="Times,serif" font-size="10.00">RenderWidgetHostViewEventHandler</text> | |
| <text text-anchor="middle" x="2298.5" y="-3303.5" font-family="Times,serif" font-size="10.00">OnMouseEvent</text> | |
| <text text-anchor="middle" x="2298.5" y="-3292.5" font-family="Times,serif" font-size="10.00">0.01s (0.075%)</text> | |
| <text text-anchor="middle" x="2298.5" y="-3281.5" font-family="Times,serif" font-size="10.00">of 0.17s (1.28%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N65 --> | |
| <g id="node65" class="node"><title>N65</title> | |
| <g id="a_node65"><a xlink:title="content::mojom::WidgetInputHandlerProxy::DispatchEvent (0.07s)"> | |
| <polygon fill="#ededec" stroke="#b2b1ad" points="2378.5,-3158 2218.5,-3158 2218.5,-3080 2378.5,-3080 2378.5,-3158"/> | |
| <text text-anchor="middle" x="2298.5" y="-3143.6" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="2298.5" y="-3129.6" font-family="Times,serif" font-size="13.00">mojom</text> | |
| <text text-anchor="middle" x="2298.5" y="-3115.6" font-family="Times,serif" font-size="13.00">WidgetInputHandlerProxy</text> | |
| <text text-anchor="middle" x="2298.5" y="-3101.6" font-family="Times,serif" font-size="13.00">DispatchEvent</text> | |
| <text text-anchor="middle" x="2298.5" y="-3087.6" font-family="Times,serif" font-size="13.00">0.07s (0.53%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N42->N65 --> | |
| <g id="edge83" class="edge"><title>N42->N65</title> | |
| <g id="a_edge83"><a xlink:title="content::RenderWidgetHostViewEventHandler::OnMouseEvent ... content::mojom::WidgetInputHandlerProxy::DispatchEvent (0.07s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M2298.5,-3274.45C2298.5,-3245.62 2298.5,-3201.93 2298.5,-3168.36"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="2302,-3168.3 2298.5,-3158.3 2295,-3168.3 2302,-3168.3"/> | |
| </a> | |
| </g> | |
| <g id="a_edge83-label"><a xlink:title="content::RenderWidgetHostViewEventHandler::OnMouseEvent ... content::mojom::WidgetInputHandlerProxy::DispatchEvent (0.07s)"> | |
| <text text-anchor="middle" x="2315.5" y="-3209.8" font-family="Times,serif" font-size="14.00"> 0.07s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N43->N17 --> | |
| <g id="edge70" class="edge"><title>N43->N17</title> | |
| <g id="a_edge70"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::Job::ReportResult ... net::HttpStreamFactoryImpl::JobController::RunLoop (0.14s)"> | |
| <path fill="none" stroke="#b2b0a9" stroke-dasharray="1,5" d="M1566.19,-2930.7C1601.14,-2920.51 1640.83,-2903.41 1667.5,-2875 1691.02,-2849.95 1691.5,-2835.86 1691.5,-2801.5 1691.5,-2801.5 1691.5,-2801.5 1691.5,-1480.5 1691.5,-1378.69 1544.92,-1349.87 1460.91,-1341.72"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1461.01,-1338.21 1450.73,-1340.8 1460.38,-1345.18 1461.01,-1338.21"/> | |
| </a> | |
| </g> | |
| <g id="a_edge70-label"><a xlink:title="content::(anonymous namespace)::ProxyResolverMojo::Job::ReportResult ... net::HttpStreamFactoryImpl::JobController::RunLoop (0.14s)"> | |
| <text text-anchor="middle" x="1708.5" y="-2104.8" font-family="Times,serif" font-size="14.00"> 0.14s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N44->N9 --> | |
| <g id="edge8" class="edge"><title>N44->N9</title> | |
| <g id="a_edge8"><a xlink:title="net::SpdyStream::OnDataReceived ... net::SpdyHttpStream::OnClose (1.70s)"> | |
| <path fill="none" stroke="#b27540" stroke-dasharray="1,5" d="M670.5,-2133.9C670.5,-2121.43 670.5,-2106.82 670.5,-2093.46"/> | |
| <polygon fill="#b27540" stroke="#b27540" points="674,-2093.07 670.5,-2083.07 667,-2093.07 674,-2093.07"/> | |
| </a> | |
| </g> | |
| <g id="a_edge8-label"><a xlink:title="net::SpdyStream::OnDataReceived ... net::SpdyHttpStream::OnClose (1.70s)"> | |
| <text text-anchor="middle" x="687.5" y="-2104.8" font-family="Times,serif" font-size="14.00"> 1.70s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N2 --> | |
| <g id="edge53" class="edge"><title>N45->N2</title> | |
| <g id="a_edge53"><a xlink:title="net::URLRequestHttpJob::Start ... net::HttpCache::Transaction::DoLoop (0.22s)"> | |
| <path fill="none" stroke="#b2aea3" stroke-dasharray="1,5" d="M927.153,-2369.16C924.506,-2305.46 908.794,-2166.96 824.5,-2101 787.961,-2072.41 651.853,-2113.04 616.5,-2083 491.149,-1976.48 496.907,-1864.1 568.5,-1716 578.128,-1696.08 594.051,-1678.38 610.438,-1663.91"/> | |
| <polygon fill="#b2aea3" stroke="#b2aea3" points="613.137,-1666.21 618.494,-1657.07 608.606,-1660.87 613.137,-1666.21"/> | |
| </a> | |
| </g> | |
| <g id="a_edge53-label"><a xlink:title="net::URLRequestHttpJob::Start ... net::HttpCache::Transaction::DoLoop (0.22s)"> | |
| <text text-anchor="middle" x="563.5" y="-1990.8" font-family="Times,serif" font-size="14.00"> 0.22s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N45->N62 --> | |
| <g id="edge106" class="edge"><title>N45->N62</title> | |
| <g id="a_edge106"><a xlink:title="net::URLRequestHttpJob::Start -> net::HttpRequestHeaders::SetHeaderInternal (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M947.238,-2369.49C959.329,-2346.16 972.5,-2313.7 972.5,-2283 972.5,-2283 972.5,-2283 972.5,-2107.5 972.5,-2069.08 1166.86,-1542.28 1225.78,-1383.49"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="1229.1,-1384.6 1229.29,-1374 1222.53,-1382.16 1229.1,-1384.6"/> | |
| </a> | |
| </g> | |
| <g id="a_edge106-label"><a xlink:title="net::URLRequestHttpJob::Start -> net::HttpRequestHeaders::SetHeaderInternal (0.01s)"> | |
| <text text-anchor="middle" x="1057.5" y="-1895.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67 --> | |
| <g id="node67" class="node"><title>N67</title> | |
| <g id="a_node67"><a xlink:title="net::HttpCache::Transaction::~Transaction (0.25s)"> | |
| <polygon fill="#edecea" stroke="#b2ada1" points="378.5,-234 288.5,-234 288.5,-154 378.5,-154 378.5,-234"/> | |
| <text text-anchor="middle" x="333.5" y="-221.2" font-family="Times,serif" font-size="11.00">net</text> | |
| <text text-anchor="middle" x="333.5" y="-209.2" font-family="Times,serif" font-size="11.00">HttpCache</text> | |
| <text text-anchor="middle" x="333.5" y="-197.2" font-family="Times,serif" font-size="11.00">Transaction</text> | |
| <text text-anchor="middle" x="333.5" y="-185.2" font-family="Times,serif" font-size="11.00">~Transaction</text> | |
| <text text-anchor="middle" x="333.5" y="-173.2" font-family="Times,serif" font-size="11.00">0.02s (0.15%)</text> | |
| <text text-anchor="middle" x="333.5" y="-161.2" font-family="Times,serif" font-size="11.00">of 0.25s (1.88%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N46->N67 --> | |
| <g id="edge47" class="edge"><title>N46->N67</title> | |
| <g id="a_edge47"><a xlink:title="net::URLRequest::~URLRequest ... net::HttpCache::Transaction::~Transaction (0.25s)"> | |
| <path fill="none" stroke="#b2ada1" stroke-dasharray="1,5" d="M324.497,-302.284C325.974,-284.683 327.778,-263.184 329.383,-244.066"/> | |
| <polygon fill="#b2ada1" stroke="#b2ada1" points="332.877,-244.284 330.225,-234.026 325.901,-243.698 332.877,-244.284"/> | |
| </a> | |
| </g> | |
| <g id="a_edge47-label"><a xlink:title="net::URLRequest::~URLRequest ... net::HttpCache::Transaction::~Transaction (0.25s)"> | |
| <text text-anchor="middle" x="346.5" y="-255.8" font-family="Times,serif" font-size="14.00"> 0.25s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49 --> | |
| <g id="node49" class="node"><title>N49</title> | |
| <g id="a_node49"><a xlink:title="content::ContentMain (0.23s)"> | |
| <polygon fill="#edeceb" stroke="#b2ada3" points="2140,-3324 2063,-3324 2063,-3288 2140,-3288 2140,-3324"/> | |
| <text text-anchor="middle" x="2101.5" y="-3313.1" font-family="Times,serif" font-size="8.00">content</text> | |
| <text text-anchor="middle" x="2101.5" y="-3304.1" font-family="Times,serif" font-size="8.00">ContentMain</text> | |
| <text text-anchor="middle" x="2101.5" y="-3295.1" font-family="Times,serif" font-size="8.00">0 of 0.23s (1.73%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N49->N31 --> | |
| <g id="edge49" class="edge"><title>N49->N31</title> | |
| <g id="a_edge49"><a xlink:title="content::ContentMain ... content::BrowserMainLoop::RunMainMessageLoopParts (0.23s)"> | |
| <path fill="none" stroke="#b2ada3" stroke-dasharray="1,5" d="M2101.5,-3287.93C2101.5,-3263.32 2101.5,-3216.66 2101.5,-3178.77"/> | |
| <polygon fill="#b2ada3" stroke="#b2ada3" points="2105,-3178.33 2101.5,-3168.33 2098,-3178.33 2105,-3178.33"/> | |
| </a> | |
| </g> | |
| <g id="a_edge49-label"><a xlink:title="content::ContentMain ... content::BrowserMainLoop::RunMainMessageLoopParts (0.23s)"> | |
| <text text-anchor="middle" x="2118.5" y="-3209.8" font-family="Times,serif" font-size="14.00"> 0.23s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N50 --> | |
| <g id="node50" class="node"><title>N50</title> | |
| <g id="a_node50"><a xlink:title="content::WebContentsImpl::OnMessageReceived (0.13s)"> | |
| <polygon fill="#edeceb" stroke="#b2b0a9" points="2038,-2842 1907,-2842 1907,-2759 2038,-2759 2038,-2842"/> | |
| <text text-anchor="middle" x="1972.5" y="-2826.8" font-family="Times,serif" font-size="14.00">content</text> | |
| <text text-anchor="middle" x="1972.5" y="-2811.8" font-family="Times,serif" font-size="14.00">WebContentsImpl</text> | |
| <text text-anchor="middle" x="1972.5" y="-2796.8" font-family="Times,serif" font-size="14.00">OnMessageReceived</text> | |
| <text text-anchor="middle" x="1972.5" y="-2781.8" font-family="Times,serif" font-size="14.00">0.10s (0.75%)</text> | |
| <text text-anchor="middle" x="1972.5" y="-2766.8" font-family="Times,serif" font-size="14.00">of 0.13s (0.98%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N51->N12 --> | |
| <g id="edge28" class="edge"><title>N51->N12</title> | |
| <g id="a_edge28"><a xlink:title="net::URLRequestJob::ReadRawDataComplete -> content::ResourceLoader::OnReadCompleted (0.71s)"> | |
| <path fill="none" stroke="#b29e82" d="M239.952,-1459.34C241.728,-1431.61 244.5,-1381.43 244.5,-1338.5 244.5,-1338.5 244.5,-1338.5 244.5,-1048 244.5,-1004.79 272.387,-962.164 294.596,-935.063"/> | |
| <polygon fill="#b29e82" stroke="#b29e82" points="297.487,-937.065 301.269,-927.168 292.141,-932.546 297.487,-937.065"/> | |
| </a> | |
| </g> | |
| <g id="a_edge28-label"><a xlink:title="net::URLRequestJob::ReadRawDataComplete -> content::ResourceLoader::OnReadCompleted (0.71s)"> | |
| <text text-anchor="middle" x="261.5" y="-1193.3" font-family="Times,serif" font-size="14.00"> 0.71s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N52->N14 --> | |
| <g id="edge58" class="edge"><title>N52->N14</title> | |
| <g id="a_edge58"><a xlink:title="content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask -> content::BrowserThreadImpl::PostTaskHelper (0.18s)"> | |
| <path fill="none" stroke="#b2afa6" d="M1096,-466.215C1089.56,-448.725 1080.75,-424.812 1072.53,-402.502"/> | |
| <polygon fill="#b2afa6" stroke="#b2afa6" points="1075.79,-401.236 1069.05,-393.062 1069.22,-403.656 1075.79,-401.236"/> | |
| </a> | |
| </g> | |
| <g id="a_edge58-label"><a xlink:title="content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask -> content::BrowserThreadImpl::PostTaskHelper (0.18s)"> | |
| <text text-anchor="middle" x="1098.5" y="-414.8" font-family="Times,serif" font-size="14.00"> 0.18s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53 --> | |
| <g id="node53" class="node"><title>N53</title> | |
| <g id="a_node53"><a xlink:title="content::MojoAsyncResourceHandler::OnResponseStarted (0.16s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="250,-944 77,-944 77,-866 250,-866 250,-944"/> | |
| <text text-anchor="middle" x="163.5" y="-929.6" font-family="Times,serif" font-size="13.00">content</text> | |
| <text text-anchor="middle" x="163.5" y="-915.6" font-family="Times,serif" font-size="13.00">MojoAsyncResourceHandler</text> | |
| <text text-anchor="middle" x="163.5" y="-901.6" font-family="Times,serif" font-size="13.00">OnResponseStarted</text> | |
| <text text-anchor="middle" x="163.5" y="-887.6" font-family="Times,serif" font-size="13.00">0.06s (0.45%)</text> | |
| <text text-anchor="middle" x="163.5" y="-873.6" font-family="Times,serif" font-size="13.00">of 0.16s (1.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N55 --> | |
| <g id="node55" class="node"><title>N55</title> | |
| <g id="a_node55"><a xlink:title="content::mojom::URLLoaderClientProxy::OnReceiveResponse (0.10s)"> | |
| <polygon fill="#edecec" stroke="#b2b0ab" points="237,-815 90,-815 90,-717 237,-717 237,-815"/> | |
| <text text-anchor="middle" x="163.5" y="-799.8" font-family="Times,serif" font-size="14.00">content</text> | |
| <text text-anchor="middle" x="163.5" y="-784.8" font-family="Times,serif" font-size="14.00">mojom</text> | |
| <text text-anchor="middle" x="163.5" y="-769.8" font-family="Times,serif" font-size="14.00">URLLoaderClientProxy</text> | |
| <text text-anchor="middle" x="163.5" y="-754.8" font-family="Times,serif" font-size="14.00">OnReceiveResponse</text> | |
| <text text-anchor="middle" x="163.5" y="-739.8" font-family="Times,serif" font-size="14.00">0.09s (0.68%)</text> | |
| <text text-anchor="middle" x="163.5" y="-724.8" font-family="Times,serif" font-size="14.00">of 0.10s (0.75%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N53->N55 --> | |
| <g id="edge76" class="edge"><title>N53->N55</title> | |
| <g id="a_edge76"><a xlink:title="content::MojoAsyncResourceHandler::OnResponseStarted -> content::mojom::URLLoaderClientProxy::OnReceiveResponse (0.10s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M163.5,-865.838C163.5,-853.346 163.5,-839.167 163.5,-825.526"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="167,-825.238 163.5,-815.238 160,-825.238 167,-825.238"/> | |
| </a> | |
| </g> | |
| <g id="a_edge76-label"><a xlink:title="content::MojoAsyncResourceHandler::OnResponseStarted -> content::mojom::URLLoaderClientProxy::OnReceiveResponse (0.10s)"> | |
| <text text-anchor="middle" x="180.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N15 --> | |
| <g id="edge52" class="edge"><title>N56->N15</title> | |
| <g id="a_edge52"><a xlink:title="net::DataPayloadDecoder::ResumeDecodingPayload -> net::Http2DecoderAdapter::OnDataEnd (0.22s)"> | |
| <path fill="none" stroke="#b2aea3" d="M578.433,-2371.73C597.646,-2353.21 621.943,-2329.8 640.751,-2311.67"/> | |
| <polygon fill="#b2aea3" stroke="#b2aea3" points="643.673,-2313.71 648.445,-2304.25 638.816,-2308.67 643.673,-2313.71"/> | |
| </a> | |
| </g> | |
| <g id="a_edge52-label"><a xlink:title="net::DataPayloadDecoder::ResumeDecodingPayload -> net::Http2DecoderAdapter::OnDataEnd (0.22s)"> | |
| <text text-anchor="middle" x="633.5" y="-2337.8" font-family="Times,serif" font-size="14.00"> 0.22s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N56->N70 --> | |
| <g id="edge102" class="edge"><title>N56->N70</title> | |
| <g id="a_edge102"><a xlink:title="net::DataPayloadDecoder::ResumeDecodingPayload -> net::SpdySession::OnStreamFrameData (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M509.967,-2371.93C500.838,-2360.58 495.018,-2347.23 500.5,-2334 501.859,-2330.72 503.543,-2327.54 505.463,-2324.48"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="508.431,-2326.35 511.425,-2316.18 502.747,-2322.26 508.431,-2326.35"/> | |
| </a> | |
| </g> | |
| <g id="a_edge102-label"><a xlink:title="net::DataPayloadDecoder::ResumeDecodingPayload -> net::SpdySession::OnStreamFrameData (0.01s)"> | |
| <text text-anchor="middle" x="517.5" y="-2337.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N57->N24 --> | |
| <g id="edge43" class="edge"><title>N57->N24</title> | |
| <g id="a_edge43"><a xlink:title="net::HttpStreamFactoryImpl::JobController::DoResolveProxy ... content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL (0.29s)"> | |
| <path fill="none" stroke="#b2ac9f" stroke-dasharray="1,5" d="M1403.5,-1153.77C1403.5,-1141.15 1403.5,-1127.04 1403.5,-1113.38"/> | |
| <polygon fill="#b2ac9f" stroke="#b2ac9f" points="1407,-1113.05 1403.5,-1103.05 1400,-1113.05 1407,-1113.05"/> | |
| </a> | |
| </g> | |
| <g id="a_edge43-label"><a xlink:title="net::HttpStreamFactoryImpl::JobController::DoResolveProxy ... content::(anonymous namespace)::ProxyResolverMojo::GetProxyForURL (0.29s)"> | |
| <text text-anchor="middle" x="1420.5" y="-1124.8" font-family="Times,serif" font-size="14.00"> 0.29s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N37 --> | |
| <g id="edge62" class="edge"><title>N59->N37</title> | |
| <g id="a_edge62"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.17s)"> | |
| <path fill="none" stroke="#b2afa7" d="M104.448,-216.137C101.922,-230.846 100.524,-250.669 106.5,-267 110.404,-277.667 116.696,-287.835 123.769,-296.973"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="121.089,-299.224 130.144,-304.724 126.495,-294.777 121.089,-299.224"/> | |
| </a> | |
| </g> | |
| <g id="a_edge62-label"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler -> content::ThrottlingResourceHandler::~ThrottlingResourceHandler (0.17s)"> | |
| <text text-anchor="middle" x="123.5" y="-255.8" font-family="Times,serif" font-size="14.00"> 0.17s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N59->N40 --> | |
| <g id="edge67" class="edge"><title>N59->N40</title> | |
| <g id="a_edge67"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler -> content::MojoAsyncResourceHandler::~MojoAsyncResourceHandler (0.15s)"> | |
| <path fill="none" stroke="#b2afa8" d="M108.901,-171.966C108.375,-153.478 107.588,-125.852 106.904,-101.822"/> | |
| <polygon fill="#b2afa8" stroke="#b2afa8" points="110.402,-101.676 106.618,-91.7801 103.404,-101.876 110.402,-101.676"/> | |
| </a> | |
| </g> | |
| <g id="a_edge67-label"><a xlink:title="content::LayeredResourceHandler::~LayeredResourceHandler -> content::MojoAsyncResourceHandler::~MojoAsyncResourceHandler (0.15s)"> | |
| <text text-anchor="middle" x="125.5" y="-124.8" font-family="Times,serif" font-size="14.00"> 0.15s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60 --> | |
| <g id="node60" class="node"><title>N60</title> | |
| <g id="a_node60"><a xlink:title="net::LayeredNetworkDelegate::OnCompleted (0.16s)"> | |
| <polygon fill="#edeceb" stroke="#b2afa7" points="1007.5,-666 867.5,-666 867.5,-593 1007.5,-593 1007.5,-666"/> | |
| <text text-anchor="middle" x="937.5" y="-652.4" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="937.5" y="-639.4" font-family="Times,serif" font-size="12.00">LayeredNetworkDelegate</text> | |
| <text text-anchor="middle" x="937.5" y="-626.4" font-family="Times,serif" font-size="12.00">OnCompleted</text> | |
| <text text-anchor="middle" x="937.5" y="-613.4" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="937.5" y="-600.4" font-family="Times,serif" font-size="12.00">of 0.16s (1.20%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N60->N52 --> | |
| <g id="edge77" class="edge"><title>N60->N52</title> | |
| <g id="a_edge77"><a xlink:title="net::LayeredNetworkDelegate::OnCompleted -> content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.10s)"> | |
| <path fill="none" stroke="#b2b0ab" d="M982.08,-592.81C1008.04,-572.023 1040.51,-546.034 1065.62,-525.927"/> | |
| <polygon fill="#b2b0ab" stroke="#b2b0ab" points="1067.88,-528.602 1073.5,-519.62 1063.5,-523.138 1067.88,-528.602"/> | |
| </a> | |
| </g> | |
| <g id="a_edge77-label"><a xlink:title="net::LayeredNetworkDelegate::OnCompleted -> content::(anonymous namespace)::BrowserThreadTaskRunner::PostDelayedTask (0.10s)"> | |
| <text text-anchor="middle" x="1038.5" y="-563.8" font-family="Times,serif" font-size="14.00"> 0.10s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N61->N50 --> | |
| <g id="edge73" class="edge"><title>N61->N50</title> | |
| <g id="a_edge73"><a xlink:title="content::RenderFrameHostImpl::OnMessageReceived -> content::WebContentsImpl::OnMessageReceived (0.13s)"> | |
| <path fill="none" stroke="#b2b0a9" d="M1972.5,-2909.16C1972.5,-2892 1972.5,-2871.15 1972.5,-2852.38"/> | |
| <polygon fill="#b2b0a9" stroke="#b2b0a9" points="1976,-2852.2 1972.5,-2842.2 1969,-2852.2 1976,-2852.2"/> | |
| </a> | |
| </g> | |
| <g id="a_edge73-label"><a xlink:title="content::RenderFrameHostImpl::OnMessageReceived -> content::WebContentsImpl::OnMessageReceived (0.13s)"> | |
| <text text-anchor="middle" x="1989.5" y="-2863.8" font-family="Times,serif" font-size="14.00"> 0.13s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63->N23 --> | |
| <g id="edge31" class="edge"><title>N63->N23</title> | |
| <g id="a_edge31"><a xlink:title="content::ResourceDispatcherHostImpl::DidFinishLoading ... content::ResourceLoader::~ResourceLoader (0.58s)"> | |
| <path fill="none" stroke="#b2a38b" stroke-dasharray="1,5" d="M321.5,-597.98C321.5,-579.367 321.5,-555.341 321.5,-535.073"/> | |
| <polygon fill="#b2a38b" stroke="#b2a38b" points="325,-534.865 321.5,-524.865 318,-534.865 325,-534.865"/> | |
| </a> | |
| </g> | |
| <g id="a_edge31-label"><a xlink:title="content::ResourceDispatcherHostImpl::DidFinishLoading ... content::ResourceLoader::~ResourceLoader (0.58s)"> | |
| <text text-anchor="middle" x="338.5" y="-563.8" font-family="Times,serif" font-size="14.00"> 0.58s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N63->N26 --> | |
| <g id="edge99" class="edge"><title>N63->N26</title> | |
| <g id="a_edge99"><a xlink:title="content::ResourceDispatcherHostImpl::DidFinishLoading -> content::BrowserThread::PostTask (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M390.228,-610.76C448.193,-596.12 533.468,-575.335 608.5,-560 729.677,-535.234 873.516,-512.416 947.002,-501.228"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="947.532,-504.688 956.894,-499.728 946.482,-497.767 947.532,-504.688"/> | |
| </a> | |
| </g> | |
| <g id="a_edge99-label"><a xlink:title="content::ResourceDispatcherHostImpl::DidFinishLoading -> content::BrowserThread::PostTask (0.01s)"> | |
| <text text-anchor="middle" x="625.5" y="-563.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N67->N28 --> | |
| <g id="edge55" class="edge"><title>N67->N28</title> | |
| <g id="a_edge55"><a xlink:title="net::HttpCache::Transaction::~Transaction -> content::MojoAsyncResourceHandler::WriterIOBuffer::~WriterIOBuffer (0.20s)"> | |
| <path fill="none" stroke="#b2aea5" d="M334.057,-153.863C334.236,-141.31 334.438,-127.097 334.634,-113.37"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="338.138,-113.052 334.781,-103.004 331.139,-112.953 338.138,-113.052"/> | |
| </a> | |
| </g> | |
| <g id="a_edge55-label"><a xlink:title="net::HttpCache::Transaction::~Transaction -> content::MojoAsyncResourceHandler::WriterIOBuffer::~WriterIOBuffer (0.20s)"> | |
| <text text-anchor="middle" x="351.5" y="-124.8" font-family="Times,serif" font-size="14.00"> 0.20s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68->N26 --> | |
| <g id="edge104" class="edge"><title>N68->N26</title> | |
| <g id="a_edge104"><a xlink:title="net::NetworkDelegate::NotifyCompleted -> content::BrowserThread::PostTask (0.01s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M583.041,-734.412C589.685,-728.487 596.72,-722.435 603.5,-717 697.79,-641.413 719.04,-617.187 825.5,-560 864.72,-538.932 912.146,-521.096 946.93,-509.297"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="948.468,-512.473 956.841,-505.982 946.247,-505.835 948.468,-512.473"/> | |
| </a> | |
| </g> | |
| <g id="a_edge104-label"><a xlink:title="net::NetworkDelegate::NotifyCompleted -> content::BrowserThread::PostTask (0.01s)"> | |
| <text text-anchor="middle" x="782.5" y="-625.8" font-family="Times,serif" font-size="14.00"> 0.01s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N68->N60 --> | |
| <g id="edge65" class="edge"><title>N68->N60</title> | |
| <g id="a_edge65"><a xlink:title="net::NetworkDelegate::NotifyCompleted -> net::LayeredNetworkDelegate::OnCompleted (0.16s)"> | |
| <path fill="none" stroke="#b2afa7" d="M579.377,-734.32C586.729,-727.849 594.978,-721.597 603.5,-717 606.367,-715.454 759.677,-676.038 857.57,-650.953"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="858.633,-654.294 867.451,-648.421 856.895,-647.513 858.633,-654.294"/> | |
| </a> | |
| </g> | |
| <g id="a_edge65-label"><a xlink:title="net::NetworkDelegate::NotifyCompleted -> net::LayeredNetworkDelegate::OnCompleted (0.16s)"> | |
| <text text-anchor="middle" x="740.5" y="-687.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N69 --> | |
| <g id="node69" class="node"><title>N69</title> | |
| <g id="a_node69"><a xlink:title="net::SSLClientSocketImpl::DoPayloadWrite (0.08s)"> | |
| <polygon fill="#edecec" stroke="#b2b1ad" points="1888.5,-2837 1768.5,-2837 1768.5,-2764 1888.5,-2764 1888.5,-2837"/> | |
| <text text-anchor="middle" x="1828.5" y="-2823.4" font-family="Times,serif" font-size="12.00">net</text> | |
| <text text-anchor="middle" x="1828.5" y="-2810.4" font-family="Times,serif" font-size="12.00">SSLClientSocketImpl</text> | |
| <text text-anchor="middle" x="1828.5" y="-2797.4" font-family="Times,serif" font-size="12.00">DoPayloadWrite</text> | |
| <text text-anchor="middle" x="1828.5" y="-2784.4" font-family="Times,serif" font-size="12.00">0.04s (0.3%)</text> | |
| <text text-anchor="middle" x="1828.5" y="-2771.4" font-family="Times,serif" font-size="12.00">of 0.08s (0.6%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N70->N44 --> | |
| <g id="edge95" class="edge"><title>N70->N44</title> | |
| <g id="a_edge95"><a xlink:title="net::SpdySession::OnStreamFrameData -> net::SpdyStream::OnDataReceived (0.02s)"> | |
| <path fill="none" stroke="#b2b2b1" d="M585.92,-2247.88C600.066,-2234.27 616.526,-2218.43 631.147,-2204.36"/> | |
| <polygon fill="#b2b2b1" stroke="#b2b2b1" points="633.824,-2206.65 638.603,-2197.19 628.97,-2201.6 633.824,-2206.65"/> | |
| </a> | |
| </g> | |
| <g id="a_edge95-label"><a xlink:title="net::SpdySession::OnStreamFrameData -> net::SpdyStream::OnDataReceived (0.02s)"> | |
| <text text-anchor="middle" x="635.5" y="-2218.8" font-family="Times,serif" font-size="14.00"> 0.02s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N72->N2 --> | |
| <g id="edge82" class="edge"><title>N72->N2</title> | |
| <g id="a_edge82"><a xlink:title="net::URLRequestHttpJob::ReadRawData ... net::HttpCache::Transaction::DoLoop (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M448.948,-797.606C462.494,-836.442 477.958,-903.262 443.5,-944 412.357,-980.819 371.997,-929.359 336.5,-962 307.459,-988.705 314.5,-1008.55 314.5,-1048 314.5,-1482.5 314.5,-1482.5 314.5,-1482.5 314.5,-1504.41 317.063,-1513.51 333.5,-1528 411.006,-1596.34 534.565,-1614.89 608.285,-1619.67"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="608.16,-1623.16 618.347,-1620.25 608.567,-1616.18 608.16,-1623.16"/> | |
| </a> | |
| </g> | |
| <g id="a_edge82-label"><a xlink:title="net::URLRequestHttpJob::ReadRawData ... net::HttpCache::Transaction::DoLoop (0.08s)"> | |
| <text text-anchor="middle" x="331.5" y="-1193.3" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N74->N32 --> | |
| <g id="edge56" class="edge"><title>N74->N32</title> | |
| <g id="a_edge56"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... content::mojom::URLLoaderClientProxy::OnStartLoadingResponseBody (0.19s)"> | |
| <path fill="none" stroke="#b2aea5" stroke-dasharray="1,5" d="M165,-607.484C163.234,-592.636 160.774,-571.96 158.437,-552.318"/> | |
| <polygon fill="#b2aea5" stroke="#b2aea5" points="161.888,-551.694 157.231,-542.178 154.937,-552.521 161.888,-551.694"/> | |
| </a> | |
| </g> | |
| <g id="a_edge56-label"><a xlink:title="content::LayeredResourceHandler::OnReadCompleted ... content::mojom::URLLoaderClientProxy::OnStartLoadingResponseBody (0.19s)"> | |
| <text text-anchor="middle" x="178.5" y="-563.8" font-family="Times,serif" font-size="14.00"> 0.19s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N75->N19 --> | |
| <g id="edge38" class="edge"><title>N75->N19</title> | |
| <g id="a_edge38"><a xlink:title="content::LayeredResourceHandler::OnWillRead ... content::MojoAsyncResourceHandler::OnWillRead (0.38s)"> | |
| <path fill="none" stroke="#b2a999" stroke-dasharray="1,5" d="M703.508,-882.894C707.991,-867.149 714.338,-844.85 720.27,-824.012"/> | |
| <polygon fill="#b2a999" stroke="#b2a999" points="723.677,-824.829 723.048,-814.253 716.944,-822.913 723.677,-824.829"/> | |
| </a> | |
| </g> | |
| <g id="a_edge38-label"><a xlink:title="content::LayeredResourceHandler::OnWillRead ... content::MojoAsyncResourceHandler::OnWillRead (0.38s)"> | |
| <text text-anchor="middle" x="734.5" y="-836.8" font-family="Times,serif" font-size="14.00"> 0.38s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N76->N53 --> | |
| <g id="edge64" class="edge"><title>N76->N53</title> | |
| <g id="a_edge64"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted ... content::MojoAsyncResourceHandler::OnResponseStarted (0.16s)"> | |
| <path fill="none" stroke="#b2afa7" stroke-dasharray="1,5" d="M163.5,-1026.74C163.5,-1007.72 163.5,-979.121 163.5,-954.532"/> | |
| <polygon fill="#b2afa7" stroke="#b2afa7" points="167,-954.279 163.5,-944.279 160,-954.279 167,-954.279"/> | |
| </a> | |
| </g> | |
| <g id="a_edge64-label"><a xlink:title="content::ThrottlingResourceHandler::OnResponseStarted ... content::MojoAsyncResourceHandler::OnResponseStarted (0.16s)"> | |
| <text text-anchor="middle" x="180.5" y="-965.8" font-family="Times,serif" font-size="14.00"> 0.16s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N77->N11 --> | |
| <g id="edge22" class="edge"><title>N77->N11</title> | |
| <g id="a_edge22"><a xlink:title="net::SpdyHttpStream::OnHeadersReceived -> net::SpdyHttpStream::DoResponseCallback (0.83s)"> | |
| <path fill="none" stroke="#b29a7a" d="M778.758,-2381.45C783.193,-2357.65 789.5,-2317.71 789.5,-2283 789.5,-2283 789.5,-2283 789.5,-1946 789.5,-1920.25 786.669,-1910.25 768.5,-1892 755.861,-1879.31 738.593,-1870.63 722.016,-1864.76"/> | |
| <polygon fill="#b29a7a" stroke="#b29a7a" points="722.968,-1861.38 712.375,-1861.61 720.796,-1868.04 722.968,-1861.38"/> | |
| </a> | |
| </g> | |
| <g id="a_edge22-label"><a xlink:title="net::SpdyHttpStream::OnHeadersReceived -> net::SpdyHttpStream::DoResponseCallback (0.83s)"> | |
| <text text-anchor="middle" x="806.5" y="-2104.8" font-family="Times,serif" font-size="14.00"> 0.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78 --> | |
| <g id="node78" class="node"><title>N78</title> | |
| <g id="a_node78"><a xlink:title="net::SpdySession::DoReadLoop (2.90s)"> | |
| <polygon fill="#edded5" stroke="#b24100" points="710.5,-2822.5 630.5,-2822.5 630.5,-2778.5 710.5,-2778.5 710.5,-2822.5"/> | |
| <text text-anchor="middle" x="670.5" y="-2812.1" font-family="Times,serif" font-size="8.00">net</text> | |
| <text text-anchor="middle" x="670.5" y="-2803.1" font-family="Times,serif" font-size="8.00">SpdySession</text> | |
| <text text-anchor="middle" x="670.5" y="-2794.1" font-family="Times,serif" font-size="8.00">DoReadLoop</text> | |
| <text text-anchor="middle" x="670.5" y="-2785.1" font-family="Times,serif" font-size="8.00">0 of 2.90s (21.79%)</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N78->N13 --> | |
| <g id="edge4" class="edge"><title>N78->N13</title> | |
| <g id="a_edge4"><a xlink:title="net::SpdySession::DoReadLoop ... net::Http2DecoderAdapter::ProcessInputFrame (2.83s)"> | |
| <path fill="none" stroke="#b24200" stroke-width="2" stroke-dasharray="1,5" d="M670.5,-2778.25C670.5,-2759.01 670.5,-2730.41 670.5,-2708.6"/> | |
| <polygon fill="#b24200" stroke="#b24200" stroke-width="2" points="674,-2708.51 670.5,-2698.51 667,-2708.51 674,-2708.51"/> | |
| </a> | |
| </g> | |
| <g id="a_edge4-label"><a xlink:title="net::SpdySession::DoReadLoop ... net::Http2DecoderAdapter::ProcessInputFrame (2.83s)"> | |
| <text text-anchor="middle" x="687.5" y="-2729.8" font-family="Times,serif" font-size="14.00"> 2.83s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N79->N69 --> | |
| <g id="edge80" class="edge"><title>N79->N69</title> | |
| <g id="a_edge80"><a xlink:title="net::SpdySession::DoWrite ... net::SSLClientSocketImpl::DoPayloadWrite (0.08s)"> | |
| <path fill="none" stroke="#b2b1ad" stroke-dasharray="1,5" d="M1810.6,-2923.83C1813.54,-2903.73 1818.06,-2872.86 1821.82,-2847.16"/> | |
| <polygon fill="#b2b1ad" stroke="#b2b1ad" points="1825.29,-2847.64 1823.27,-2837.24 1818.36,-2846.62 1825.29,-2847.64"/> | |
| </a> | |
| </g> | |
| <g id="a_edge80-label"><a xlink:title="net::SpdySession::DoWrite ... net::SSLClientSocketImpl::DoPayloadWrite (0.08s)"> | |
| <text text-anchor="middle" x="1836.5" y="-2863.8" font-family="Times,serif" font-size="14.00"> 0.08s</text> | |
| </a> | |
| </g> | |
| </g> | |
| <!-- N80->N78 --> | |
| <g id="edge3" class="edge"><title>N80->N78</title> | |
| <g id="a_edge3"><a xlink:title="net::SpdySession::PumpReadLoop -> net::SpdySession::DoReadLoop (2.90s)"> | |
| <path fill="none" stroke="#b24100" stroke-width="2" d="M670.5,-2923.83C670.5,-2899.87 670.5,-2860.62 670.5,-2833.06"/> | |
| <polygon fill="#b24100" stroke="#b24100" stroke-width="2" points="674,-2832.76 670.5,-2822.76 667,-2832.76 674,-2832.76"/> | |
| </a> | |
| </g> | |
| <g id="a_edge3-label"><a xlink:title="net::SpdySession::PumpReadLoop -> net::SpdySession::DoReadLoop (2.90s)"> | |
| <text text-anchor="middle" x="687.5" y="-2863.8" font-family="Times,serif" font-size="14.00"> 2.90s</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